1 lib_LTLIBRARIES = libstrongswan.la
3 libstrongswan_la_SOURCES = \
8 settings.h settings.c \
9 printf_hook.c printf_hook.h \
10 asn1/asn1.c asn1/asn1.h \
11 asn1/asn1_parser.c asn1/asn1_parser.h \
12 asn1/oid.c asn1/oid.h \
13 crypto/crypters/crypter.c crypto/crypters/crypter.h \
14 crypto/hashers/hasher.h crypto/hashers/hasher.c \
15 crypto/pkcs9.c crypto/pkcs9.h \
16 crypto/proposal/proposal_keywords.c crypto/proposal/proposal_keywords.h \
17 crypto/prfs/prf.c crypto/prfs/prf.h \
18 crypto/rngs/rng.c crypto/rngs/rng.h \
19 crypto/prf_plus.h crypto/prf_plus.c \
20 crypto/signers/signer.c crypto/signers/signer.h \
21 crypto/crypto_factory.c crypto/crypto_factory.h \
22 crypto/crypto_tester.c crypto/crypto_tester.h \
23 crypto/diffie_hellman.c crypto/diffie_hellman.h \
24 crypto/aead.c crypto/aead.h \
25 crypto/transform.c crypto/transform.h \
26 credentials/credential_factory.c credentials/credential_factory.h \
27 credentials/builder.c credentials/builder.h \
28 credentials/cred_encoding.c credentials/cred_encoding.h \
29 credentials/keys/private_key.c credentials/keys/private_key.h \
30 credentials/keys/public_key.c credentials/keys/public_key.h \
31 credentials/keys/shared_key.c credentials/keys/shared_key.h \
32 credentials/certificates/certificate.c credentials/certificates/certificate.h \
33 credentials/certificates/x509.h credentials/certificates/x509.c \
34 credentials/certificates/ac.h \
35 credentials/certificates/crl.h credentials/certificates/crl.c \
36 credentials/certificates/pkcs10.h \
37 credentials/certificates/ocsp_request.h \
38 credentials/certificates/ocsp_response.h credentials/certificates/ocsp_response.c \
39 credentials/certificates/pgp_certificate.h \
40 credentials/ietf_attributes/ietf_attributes.c credentials/ietf_attributes/ietf_attributes.h \
41 credentials/credential_manager.c credentials/credential_manager.h \
42 credentials/sets/auth_cfg_wrapper.c credentials/sets/auth_cfg_wrapper.h \
43 credentials/sets/ocsp_response_wrapper.c credentials/sets/ocsp_response_wrapper.h \
44 credentials/sets/cert_cache.c credentials/sets/cert_cache.h \
45 credentials/sets/mem_cred.c credentials/sets/mem_cred.h \
46 credentials/sets/callback_cred.c credentials/sets/callback_cred.h \
47 credentials/auth_cfg.c credentials/auth_cfg.h credentials/credential_set.h \
48 credentials/cert_validator.h \
49 database/database.h database/database_factory.h database/database_factory.c \
50 fetcher/fetcher.h fetcher/fetcher_manager.h fetcher/fetcher_manager.c \
52 plugins/plugin_loader.c plugins/plugin_loader.h plugins/plugin.h \
53 processing/jobs/job.h \
54 processing/jobs/callback_job.c processing/jobs/callback_job.h \
55 processing/processor.c processing/processor.h \
56 processing/scheduler.c processing/scheduler.h \
57 selectors/traffic_selector.c selectors/traffic_selector.h \
58 threading/thread.h threading/thread.c \
59 threading/thread_value.h threading/thread_value.c \
60 threading/mutex.h threading/mutex.c threading/condvar.h \
61 threading/rwlock.h threading/rwlock.c \
62 threading/lock_profiler.h \
64 utils/host.c utils/host.h \
65 utils/identification.c utils/identification.h \
67 utils/lexparser.c utils/lexparser.h \
68 utils/linked_list.c utils/linked_list.h \
69 utils/hashtable.c utils/hashtable.h \
70 utils/enumerator.c utils/enumerator.h \
71 utils/optionsfrom.c utils/optionsfrom.h \
72 utils/backtrace.c utils/backtrace.h
75 library.lo : $(top_builddir)/config.status
77 libstrongswan_la_LIBADD = $(PTHREADLIB) $(DLLIB) $(BTLIB) $(SOCKLIB) $(RTLIB)
79 INCLUDES = -I$(top_srcdir)/src/libstrongswan
81 -DIPSEC_DIR=\"${ipsecdir}\" \
82 -DPLUGINDIR=\"${plugindir}\" \
83 -DSTRONGSWAN_CONF=\"${strongswan_conf}\"
86 AM_CFLAGS += -DLEAK_DETECTIVE
87 libstrongswan_la_SOURCES += \
88 utils/leak_detective.c utils/leak_detective.h
92 AM_CFLAGS += -DLOCK_PROFILER
96 AM_CFLAGS += -DINTEGRITY_TEST
97 libstrongswan_la_SOURCES += \
98 integrity_checker.c integrity_checker.h
102 libstrongswan_la_LIBADD += -lvstr
106 asn1/oid.txt asn1/oid.pl \
107 crypto/proposal/proposal_keywords.txt \
108 Android.mk AndroidConfigLocal.h
111 $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
112 $(srcdir)/crypto/proposal/proposal_keywords.c
114 MAINTAINERCLEANFILES = \
115 $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
116 $(srcdir)/crypto/proposal/proposal_keywords.c
118 $(srcdir)/asn1/oid.c : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
119 (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
121 $(srcdir)/asn1/oid.h : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
122 (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
124 $(srcdir)/crypto/proposal/proposal_keywords.c: $(srcdir)/crypto/proposal/proposal_keywords.txt \
125 $(srcdir)/crypto/proposal/proposal_keywords.h
126 $(GPERF) -N proposal_get_token -m 10 -C -G -c -t -D < \
127 $(srcdir)/crypto/proposal/proposal_keywords.txt > $@
130 # build plugins with their own Makefile
131 #######################################
140 SUBDIRS += plugins/af_alg
142 libstrongswan_la_LIBADD += plugins/af_alg/libstrongswan-af-alg.la
147 SUBDIRS += plugins/aes
149 libstrongswan_la_LIBADD += plugins/aes/libstrongswan-aes.la
154 SUBDIRS += plugins/des
156 libstrongswan_la_LIBADD += plugins/des/libstrongswan-des.la
161 SUBDIRS += plugins/blowfish
163 libstrongswan_la_LIBADD += plugins/blowfish/libstrongswan-blowfish.la
168 SUBDIRS += plugins/md4
170 libstrongswan_la_LIBADD += plugins/md4/libstrongswan-md4.la
175 SUBDIRS += plugins/md5
177 libstrongswan_la_LIBADD += plugins/md5/libstrongswan-md5.la
182 SUBDIRS += plugins/sha1
184 libstrongswan_la_LIBADD += plugins/sha1/libstrongswan-sha1.la
189 SUBDIRS += plugins/sha2
191 libstrongswan_la_LIBADD += plugins/sha2/libstrongswan-sha2.la
196 SUBDIRS += plugins/gmp
198 libstrongswan_la_LIBADD += plugins/gmp/libstrongswan-gmp.la
203 SUBDIRS += plugins/random
205 libstrongswan_la_LIBADD += plugins/random/libstrongswan-random.la
210 SUBDIRS += plugins/hmac
212 libstrongswan_la_LIBADD += plugins/hmac/libstrongswan-hmac.la
217 SUBDIRS += plugins/xcbc
219 libstrongswan_la_LIBADD += plugins/xcbc/libstrongswan-xcbc.la
224 SUBDIRS += plugins/x509
226 libstrongswan_la_LIBADD += plugins/x509/libstrongswan-x509.la
231 SUBDIRS += plugins/revocation
233 libstrongswan_la_LIBADD += plugins/revocation/libstrongswan-revocation.la
238 SUBDIRS += plugins/pubkey
240 libstrongswan_la_LIBADD += plugins/pubkey/libstrongswan-pubkey.la
245 SUBDIRS += plugins/pkcs1
247 libstrongswan_la_LIBADD += plugins/pkcs1/libstrongswan-pkcs1.la
252 SUBDIRS += plugins/pgp
254 libstrongswan_la_LIBADD += plugins/pgp/libstrongswan-pgp.la
259 SUBDIRS += plugins/dnskey
261 libstrongswan_la_LIBADD += plugins/dnskey/libstrongswan-dnskey.la
266 SUBDIRS += plugins/pem
268 libstrongswan_la_LIBADD += plugins/pem/libstrongswan-pem.la
273 SUBDIRS += plugins/curl
275 libstrongswan_la_LIBADD += plugins/curl/libstrongswan-curl.la
280 SUBDIRS += plugins/ldap
282 libstrongswan_la_LIBADD += plugins/ldap/libstrongswan-ldap.la
287 SUBDIRS += plugins/mysql
289 libstrongswan_la_LIBADD += plugins/mysql/libstrongswan-mysql.la
294 SUBDIRS += plugins/sqlite
296 libstrongswan_la_LIBADD += plugins/sqlite/libstrongswan-sqlite.la
301 SUBDIRS += plugins/padlock
303 libstrongswan_la_LIBADD += plugins/padlock/libstrongswan-padlock.la
308 SUBDIRS += plugins/openssl
310 libstrongswan_la_LIBADD += plugins/openssl/libstrongswan-openssl.la
315 SUBDIRS += plugins/gcrypt
317 libstrongswan_la_LIBADD += plugins/gcrypt/libstrongswan-gcrypt.la
322 SUBDIRS += plugins/fips_prf
324 libstrongswan_la_LIBADD += plugins/fips_prf/libstrongswan-fips-prf.la
329 SUBDIRS += plugins/agent
331 libstrongswan_la_LIBADD += plugins/agent/libstrongswan-agent.la
336 SUBDIRS += plugins/pkcs11
338 libstrongswan_la_LIBADD += plugins/pkcs11/libstrongswan-pkcs11.la
343 SUBDIRS += plugins/ctr
345 libstrongswan_la_LIBADD += plugins/ctr/libstrongswan-ctr.la
350 SUBDIRS += plugins/ccm
352 libstrongswan_la_LIBADD += plugins/ccm/libstrongswan-ccm.la
357 SUBDIRS += plugins/gcm
359 libstrongswan_la_LIBADD += plugins/gcm/libstrongswan-gcm.la
364 SUBDIRS += plugins/test_vectors
366 libstrongswan_la_LIBADD += plugins/test_vectors/libstrongswan-test-vectors.la