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 \
51 selectors/traffic_selector.c selectors/traffic_selector.h \
52 threading/thread.h threading/thread.c \
53 threading/thread_value.h threading/thread_value.c \
54 threading/mutex.h threading/mutex.c threading/condvar.h \
55 threading/rwlock.h threading/rwlock.c \
56 threading/lock_profiler.h \
58 utils/host.c utils/host.h \
59 utils/identification.c utils/identification.h \
61 utils/lexparser.c utils/lexparser.h \
62 utils/linked_list.c utils/linked_list.h \
63 utils/hashtable.c utils/hashtable.h \
64 utils/enumerator.c utils/enumerator.h \
65 utils/optionsfrom.c utils/optionsfrom.h \
66 utils/backtrace.c utils/backtrace.h \
67 plugins/plugin_loader.c plugins/plugin_loader.h plugins/plugin.h
69 library.lo : $(top_builddir)/config.status
71 libstrongswan_la_LIBADD = $(PTHREADLIB) $(DLLIB) $(BTLIB) $(SOCKLIB) $(RTLIB)
73 INCLUDES = -I$(top_srcdir)/src/libstrongswan
75 -DIPSEC_DIR=\"${ipsecdir}\" \
76 -DPLUGINDIR=\"${plugindir}\" \
77 -DSTRONGSWAN_CONF=\"${strongswan_conf}\"
80 AM_CFLAGS += -DLEAK_DETECTIVE
81 libstrongswan_la_SOURCES += \
82 utils/leak_detective.c utils/leak_detective.h
86 AM_CFLAGS += -DLOCK_PROFILER
90 AM_CFLAGS += -DINTEGRITY_TEST
91 libstrongswan_la_SOURCES += \
92 integrity_checker.c integrity_checker.h
96 libstrongswan_la_LIBADD += -lvstr
100 asn1/oid.txt asn1/oid.pl \
101 crypto/proposal/proposal_keywords.txt \
102 Android.mk AndroidConfigLocal.h
105 $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
106 $(srcdir)/crypto/proposal/proposal_keywords.c
108 MAINTAINERCLEANFILES = \
109 $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
110 $(srcdir)/crypto/proposal/proposal_keywords.c
112 $(srcdir)/asn1/oid.c : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
113 (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
115 $(srcdir)/asn1/oid.h : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
116 (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
118 $(srcdir)/crypto/proposal/proposal_keywords.c: $(srcdir)/crypto/proposal/proposal_keywords.txt \
119 $(srcdir)/crypto/proposal/proposal_keywords.h
120 $(GPERF) -N proposal_get_token -m 10 -C -G -c -t -D < \
121 $(srcdir)/crypto/proposal/proposal_keywords.txt > $@
124 # build plugins with their own Makefile
125 #######################################
134 SUBDIRS += plugins/aes
136 libstrongswan_la_LIBADD += plugins/aes/libstrongswan-aes.la
141 SUBDIRS += plugins/des
143 libstrongswan_la_LIBADD += plugins/des/libstrongswan-des.la
148 SUBDIRS += plugins/blowfish
150 libstrongswan_la_LIBADD += plugins/blowfish/libstrongswan-blowfish.la
155 SUBDIRS += plugins/md4
157 libstrongswan_la_LIBADD += plugins/md4/libstrongswan-md4.la
162 SUBDIRS += plugins/md5
164 libstrongswan_la_LIBADD += plugins/md5/libstrongswan-md5.la
169 SUBDIRS += plugins/sha1
171 libstrongswan_la_LIBADD += plugins/sha1/libstrongswan-sha1.la
176 SUBDIRS += plugins/sha2
178 libstrongswan_la_LIBADD += plugins/sha2/libstrongswan-sha2.la
183 SUBDIRS += plugins/gmp
185 libstrongswan_la_LIBADD += plugins/gmp/libstrongswan-gmp.la
190 SUBDIRS += plugins/random
192 libstrongswan_la_LIBADD += plugins/random/libstrongswan-random.la
197 SUBDIRS += plugins/hmac
199 libstrongswan_la_LIBADD += plugins/hmac/libstrongswan-hmac.la
204 SUBDIRS += plugins/xcbc
206 libstrongswan_la_LIBADD += plugins/xcbc/libstrongswan-xcbc.la
211 SUBDIRS += plugins/x509
213 libstrongswan_la_LIBADD += plugins/x509/libstrongswan-x509.la
218 SUBDIRS += plugins/revocation
220 libstrongswan_la_LIBADD += plugins/revocation/libstrongswan-revocation.la
225 SUBDIRS += plugins/pubkey
227 libstrongswan_la_LIBADD += plugins/pubkey/libstrongswan-pubkey.la
232 SUBDIRS += plugins/pkcs1
234 libstrongswan_la_LIBADD += plugins/pkcs1/libstrongswan-pkcs1.la
239 SUBDIRS += plugins/pgp
241 libstrongswan_la_LIBADD += plugins/pgp/libstrongswan-pgp.la
246 SUBDIRS += plugins/dnskey
248 libstrongswan_la_LIBADD += plugins/dnskey/libstrongswan-dnskey.la
253 SUBDIRS += plugins/pem
255 libstrongswan_la_LIBADD += plugins/pem/libstrongswan-pem.la
260 SUBDIRS += plugins/curl
262 libstrongswan_la_LIBADD += plugins/curl/libstrongswan-curl.la
267 SUBDIRS += plugins/ldap
269 libstrongswan_la_LIBADD += plugins/ldap/libstrongswan-ldap.la
274 SUBDIRS += plugins/mysql
276 libstrongswan_la_LIBADD += plugins/mysql/libstrongswan-mysql.la
281 SUBDIRS += plugins/sqlite
283 libstrongswan_la_LIBADD += plugins/sqlite/libstrongswan-sqlite.la
288 SUBDIRS += plugins/padlock
290 libstrongswan_la_LIBADD += plugins/padlock/libstrongswan-padlock.la
295 SUBDIRS += plugins/openssl
297 libstrongswan_la_LIBADD += plugins/openssl/libstrongswan-openssl.la
302 SUBDIRS += plugins/gcrypt
304 libstrongswan_la_LIBADD += plugins/gcrypt/libstrongswan-gcrypt.la
309 SUBDIRS += plugins/fips_prf
311 libstrongswan_la_LIBADD += plugins/fips_prf/libstrongswan-fips-prf.la
316 SUBDIRS += plugins/agent
318 libstrongswan_la_LIBADD += plugins/agent/libstrongswan-agent.la
323 SUBDIRS += plugins/pkcs11
325 libstrongswan_la_LIBADD += plugins/pkcs11/libstrongswan-pkcs11.la
330 SUBDIRS += plugins/ctr
332 libstrongswan_la_LIBADD += plugins/ctr/libstrongswan-ctr.la
337 SUBDIRS += plugins/ccm
339 libstrongswan_la_LIBADD += plugins/ccm/libstrongswan-ccm.la
344 SUBDIRS += plugins/gcm
346 libstrongswan_la_LIBADD += plugins/gcm/libstrongswan-gcm.la
351 SUBDIRS += plugins/test_vectors
353 libstrongswan_la_LIBADD += plugins/test_vectors/libstrongswan-test-vectors.la