]> git.ipfire.org Git - people/ms/strongswan.git/blob - src/libstrongswan/Makefile.am
printf-hook: Move glibc/vstr printf hook backends to separate files
[people/ms/strongswan.git] / src / libstrongswan / Makefile.am
1 ipseclib_LTLIBRARIES = libstrongswan.la
2
3 libstrongswan_la_SOURCES = \
4 library.c \
5 asn1/asn1.c asn1/asn1_parser.c asn1/oid.c bio/bio_reader.c bio/bio_writer.c \
6 collections/blocking_queue.c collections/enumerator.c collections/hashtable.c \
7 collections/array.c \
8 collections/linked_list.c crypto/crypters/crypter.c crypto/hashers/hasher.c \
9 crypto/proposal/proposal_keywords.c crypto/proposal/proposal_keywords_static.c \
10 crypto/prfs/prf.c crypto/prfs/mac_prf.c crypto/pkcs5.c \
11 crypto/rngs/rng.c crypto/prf_plus.c crypto/signers/signer.c \
12 crypto/signers/mac_signer.c crypto/crypto_factory.c crypto/crypto_tester.c \
13 crypto/diffie_hellman.c crypto/aead.c crypto/transform.c \
14 credentials/credential_factory.c credentials/builder.c \
15 credentials/cred_encoding.c credentials/keys/private_key.c \
16 credentials/keys/public_key.c credentials/keys/shared_key.c \
17 credentials/certificates/certificate.c credentials/certificates/crl.c \
18 credentials/certificates/ocsp_response.c \
19 credentials/containers/container.c credentials/containers/pkcs12.c \
20 credentials/ietf_attributes/ietf_attributes.c credentials/credential_manager.c \
21 credentials/sets/auth_cfg_wrapper.c credentials/sets/ocsp_response_wrapper.c \
22 credentials/sets/cert_cache.c credentials/sets/mem_cred.c \
23 credentials/sets/callback_cred.c credentials/auth_cfg.c database/database.c \
24 database/database_factory.c fetcher/fetcher.c fetcher/fetcher_manager.c eap/eap.c \
25 ipsec/ipsec_types.c \
26 networking/host.c networking/host_resolver.c networking/packet.c \
27 networking/tun_device.c networking/streams/stream.c \
28 networking/streams/stream_service.c networking/streams/stream_manager.c \
29 pen/pen.c plugins/plugin_loader.c plugins/plugin_feature.c processing/jobs/job.c \
30 processing/jobs/callback_job.c processing/processor.c processing/scheduler.c \
31 processing/watcher.c resolver/resolver_manager.c resolver/rr_set.c \
32 selectors/traffic_selector.c threading/thread.c threading/thread_value.c \
33 threading/mutex.c threading/semaphore.c threading/rwlock.c threading/spinlock.c \
34 utils/utils.c utils/chunk.c utils/debug.c utils/enum.c utils/identification.c \
35 utils/lexparser.c utils/optionsfrom.c utils/capabilities.c utils/backtrace.c \
36 utils/settings.c
37
38 if USE_DEV_HEADERS
39 strongswan_includedir = ${dev_headers}
40 nobase_strongswan_include_HEADERS = \
41 library.h \
42 asn1/asn1.h asn1/asn1_parser.h asn1/oid.h bio/bio_reader.h bio/bio_writer.h \
43 collections/blocking_queue.h collections/enumerator.h collections/hashtable.h \
44 collections/linked_list.h collections/array.h \
45 crypto/crypters/crypter.h crypto/hashers/hasher.h crypto/mac.h \
46 crypto/proposal/proposal_keywords.h crypto/proposal/proposal_keywords_static.h \
47 crypto/prfs/prf.h crypto/prfs/mac_prf.h crypto/rngs/rng.h crypto/nonce_gen.h \
48 crypto/prf_plus.h crypto/signers/signer.h crypto/signers/mac_signer.h \
49 crypto/crypto_factory.h crypto/crypto_tester.h crypto/diffie_hellman.h \
50 crypto/aead.h crypto/transform.h crypto/pkcs5.h \
51 credentials/credential_factory.h credentials/builder.h \
52 credentials/cred_encoding.h credentials/keys/private_key.h \
53 credentials/keys/public_key.h credentials/keys/shared_key.h \
54 credentials/certificates/certificate.h credentials/certificates/x509.h \
55 credentials/certificates/ac.h credentials/certificates/crl.h \
56 credentials/certificates/pkcs10.h credentials/certificates/ocsp_request.h \
57 credentials/certificates/ocsp_response.h \
58 credentials/certificates/pgp_certificate.h \
59 credentials/containers/container.h credentials/containers/pkcs7.h \
60 credentials/containers/pkcs12.h \
61 credentials/ietf_attributes/ietf_attributes.h \
62 credentials/credential_manager.h credentials/sets/auth_cfg_wrapper.h \
63 credentials/sets/ocsp_response_wrapper.h credentials/sets/cert_cache.h \
64 credentials/sets/mem_cred.h credentials/sets/callback_cred.h \
65 credentials/auth_cfg.h credentials/credential_set.h credentials/cert_validator.h \
66 database/database.h database/database_factory.h fetcher/fetcher.h \
67 fetcher/fetcher_manager.h eap/eap.h pen/pen.h ipsec/ipsec_types.h \
68 networking/host.h networking/host_resolver.h networking/packet.h \
69 networking/tun_device.h networking/streams/stream.h \
70 networking/streams/stream_service.h networking/streams/stream_manager.h \
71 resolver/resolver.h resolver/resolver_response.h resolver/rr_set.h \
72 resolver/rr.h resolver/resolver_manager.h \
73 plugins/plugin_loader.h plugins/plugin.h plugins/plugin_feature.h \
74 processing/jobs/job.h processing/jobs/callback_job.h processing/processor.h \
75 processing/scheduler.h processing/watcher.h selectors/traffic_selector.h \
76 threading/thread.h threading/thread_value.h \
77 threading/mutex.h threading/condvar.h threading/spinlock.h threading/semaphore.h \
78 threading/rwlock.h threading/rwlock_condvar.h threading/lock_profiler.h \
79 utils/utils.h utils/chunk.h utils/debug.h utils/enum.h utils/identification.h \
80 utils/lexparser.h utils/optionsfrom.h utils/capabilities.h utils/backtrace.h \
81 utils/leak_detective.h utils/printf_hook/printf_hook.h \
82 utils/printf_hook/printf_hook_vstr.h \
83 utils/settings.h utils/integrity_checker.h
84 endif
85
86 library.lo : $(top_builddir)/config.status
87
88 libstrongswan_la_LIBADD = $(PTHREADLIB) $(DLLIB) $(BTLIB) $(SOCKLIB) $(RTLIB) $(BFDLIB) $(UNWINDLIB)
89
90 AM_CPPFLAGS = \
91 -I$(top_srcdir)/src/libstrongswan \
92 -DIPSEC_DIR=\"${ipsecdir}\" \
93 -DIPSEC_LIB_DIR=\"${ipseclibdir}\" \
94 -DPLUGINDIR=\"${plugindir}\" \
95 -DSTRONGSWAN_CONF=\"${strongswan_conf}\"
96
97 AM_CFLAGS = \
98 @COVERAGE_CFLAGS@
99
100 AM_LDFLAGS = \
101 -no-undefined
102
103 if USE_LEAK_DETECTIVE
104 AM_CPPFLAGS += -DLEAK_DETECTIVE
105 libstrongswan_la_SOURCES += utils/leak_detective.c
106 endif
107
108 if USE_LOCK_PROFILER
109 AM_CPPFLAGS += -DLOCK_PROFILER
110 endif
111
112 if USE_INTEGRITY_TEST
113 AM_CPPFLAGS += -DINTEGRITY_TEST
114 libstrongswan_la_SOURCES += utils/integrity_checker.c
115 endif
116
117 if USE_VSTR
118 libstrongswan_la_SOURCES += utils/printf_hook/printf_hook_vstr.c
119 libstrongswan_la_LIBADD += -lvstr
120 endif
121
122 if !USE_VSTR
123 libstrongswan_la_SOURCES += utils/printf_hook/printf_hook_glibc.c
124 endif
125
126 if USE_LIBCAP
127 libstrongswan_la_LIBADD += -lcap
128 endif
129
130 EXTRA_DIST = \
131 asn1/oid.txt asn1/oid.pl \
132 crypto/proposal/proposal_keywords_static.txt \
133 Android.mk AndroidConfigLocal.h
134
135 BUILT_SOURCES = \
136 $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
137 $(srcdir)/crypto/proposal/proposal_keywords_static.c
138
139 MAINTAINERCLEANFILES = \
140 $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
141 $(srcdir)/crypto/proposal/proposal_keywords_static.c
142
143 $(srcdir)/asn1/oid.c : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
144 $(AM_V_GEN) \
145 (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
146
147 $(srcdir)/asn1/oid.h : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
148 $(AM_V_GEN) \
149 (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
150
151 $(srcdir)/crypto/proposal/proposal_keywords_static.c: $(srcdir)/crypto/proposal/proposal_keywords_static.txt \
152 $(srcdir)/crypto/proposal/proposal_keywords_static.h
153 $(AM_V_GEN) \
154 $(GPERF) -N proposal_get_token_static -m 10 -C -G -c -t -D < \
155 $(srcdir)/crypto/proposal/proposal_keywords_static.txt > $@
156
157
158 # build plugins with their own Makefile
159 #######################################
160
161 if MONOLITHIC
162 SUBDIRS =
163 else
164 SUBDIRS = .
165 endif
166
167 if USE_AF_ALG
168 SUBDIRS += plugins/af_alg
169 if MONOLITHIC
170 libstrongswan_la_LIBADD += plugins/af_alg/libstrongswan-af-alg.la
171 endif
172 endif
173
174 if USE_AES
175 SUBDIRS += plugins/aes
176 if MONOLITHIC
177 libstrongswan_la_LIBADD += plugins/aes/libstrongswan-aes.la
178 endif
179 endif
180
181 if USE_DES
182 SUBDIRS += plugins/des
183 if MONOLITHIC
184 libstrongswan_la_LIBADD += plugins/des/libstrongswan-des.la
185 endif
186 endif
187
188 if USE_BLOWFISH
189 SUBDIRS += plugins/blowfish
190 if MONOLITHIC
191 libstrongswan_la_LIBADD += plugins/blowfish/libstrongswan-blowfish.la
192 endif
193 endif
194
195 if USE_RC2
196 SUBDIRS += plugins/rc2
197 if MONOLITHIC
198 libstrongswan_la_LIBADD += plugins/rc2/libstrongswan-rc2.la
199 endif
200 endif
201
202 if USE_MD4
203 SUBDIRS += plugins/md4
204 if MONOLITHIC
205 libstrongswan_la_LIBADD += plugins/md4/libstrongswan-md4.la
206 endif
207 endif
208
209 if USE_MD5
210 SUBDIRS += plugins/md5
211 if MONOLITHIC
212 libstrongswan_la_LIBADD += plugins/md5/libstrongswan-md5.la
213 endif
214 endif
215
216 if USE_SHA1
217 SUBDIRS += plugins/sha1
218 if MONOLITHIC
219 libstrongswan_la_LIBADD += plugins/sha1/libstrongswan-sha1.la
220 endif
221 endif
222
223 if USE_SHA2
224 SUBDIRS += plugins/sha2
225 if MONOLITHIC
226 libstrongswan_la_LIBADD += plugins/sha2/libstrongswan-sha2.la
227 endif
228 endif
229
230 if USE_GMP
231 SUBDIRS += plugins/gmp
232 if MONOLITHIC
233 libstrongswan_la_LIBADD += plugins/gmp/libstrongswan-gmp.la
234 endif
235 endif
236
237 if USE_RDRAND
238 SUBDIRS += plugins/rdrand
239 if MONOLITHIC
240 libstrongswan_la_LIBADD += plugins/rdrand/libstrongswan-rdrand.la
241 endif
242 endif
243
244 if USE_RANDOM
245 SUBDIRS += plugins/random
246 if MONOLITHIC
247 libstrongswan_la_LIBADD += plugins/random/libstrongswan-random.la
248 endif
249 endif
250
251 if USE_NONCE
252 SUBDIRS += plugins/nonce
253 if MONOLITHIC
254 libstrongswan_la_LIBADD += plugins/nonce/libstrongswan-nonce.la
255 endif
256 endif
257
258 if USE_HMAC
259 SUBDIRS += plugins/hmac
260 if MONOLITHIC
261 libstrongswan_la_LIBADD += plugins/hmac/libstrongswan-hmac.la
262 endif
263 endif
264
265 if USE_CMAC
266 SUBDIRS += plugins/cmac
267 if MONOLITHIC
268 libstrongswan_la_LIBADD += plugins/cmac/libstrongswan-cmac.la
269 endif
270 endif
271
272 if USE_XCBC
273 SUBDIRS += plugins/xcbc
274 if MONOLITHIC
275 libstrongswan_la_LIBADD += plugins/xcbc/libstrongswan-xcbc.la
276 endif
277 endif
278
279 if USE_X509
280 SUBDIRS += plugins/x509
281 if MONOLITHIC
282 libstrongswan_la_LIBADD += plugins/x509/libstrongswan-x509.la
283 endif
284 endif
285
286 if USE_REVOCATION
287 SUBDIRS += plugins/revocation
288 if MONOLITHIC
289 libstrongswan_la_LIBADD += plugins/revocation/libstrongswan-revocation.la
290 endif
291 endif
292
293 if USE_CONSTRAINTS
294 SUBDIRS += plugins/constraints
295 if MONOLITHIC
296 libstrongswan_la_LIBADD += plugins/constraints/libstrongswan-constraints.la
297 endif
298 endif
299
300 if USE_PUBKEY
301 SUBDIRS += plugins/pubkey
302 if MONOLITHIC
303 libstrongswan_la_LIBADD += plugins/pubkey/libstrongswan-pubkey.la
304 endif
305 endif
306
307 if USE_PKCS1
308 SUBDIRS += plugins/pkcs1
309 if MONOLITHIC
310 libstrongswan_la_LIBADD += plugins/pkcs1/libstrongswan-pkcs1.la
311 endif
312 endif
313
314 if USE_PKCS7
315 SUBDIRS += plugins/pkcs7
316 if MONOLITHIC
317 libstrongswan_la_LIBADD += plugins/pkcs7/libstrongswan-pkcs7.la
318 endif
319 endif
320
321 if USE_PKCS8
322 SUBDIRS += plugins/pkcs8
323 if MONOLITHIC
324 libstrongswan_la_LIBADD += plugins/pkcs8/libstrongswan-pkcs8.la
325 endif
326 endif
327
328 if USE_PKCS12
329 SUBDIRS += plugins/pkcs12
330 if MONOLITHIC
331 libstrongswan_la_LIBADD += plugins/pkcs12/libstrongswan-pkcs12.la
332 endif
333 endif
334
335 if USE_PGP
336 SUBDIRS += plugins/pgp
337 if MONOLITHIC
338 libstrongswan_la_LIBADD += plugins/pgp/libstrongswan-pgp.la
339 endif
340 endif
341
342 if USE_DNSKEY
343 SUBDIRS += plugins/dnskey
344 if MONOLITHIC
345 libstrongswan_la_LIBADD += plugins/dnskey/libstrongswan-dnskey.la
346 endif
347 endif
348
349 if USE_SSHKEY
350 SUBDIRS += plugins/sshkey
351 if MONOLITHIC
352 libstrongswan_la_LIBADD += plugins/sshkey/libstrongswan-sshkey.la
353 endif
354 endif
355
356 if USE_PEM
357 SUBDIRS += plugins/pem
358 if MONOLITHIC
359 libstrongswan_la_LIBADD += plugins/pem/libstrongswan-pem.la
360 endif
361 endif
362
363 if USE_CURL
364 SUBDIRS += plugins/curl
365 if MONOLITHIC
366 libstrongswan_la_LIBADD += plugins/curl/libstrongswan-curl.la
367 endif
368 endif
369
370 if USE_UNBOUND
371 SUBDIRS += plugins/unbound
372 if MONOLITHIC
373 libstrongswan_la_LIBADD += plugins/unbound/libstrongswan-unbound.la
374 endif
375 endif
376
377 if USE_SOUP
378 SUBDIRS += plugins/soup
379 if MONOLITHIC
380 libstrongswan_la_LIBADD += plugins/soup/libstrongswan-soup.la
381 endif
382 endif
383
384 if USE_LDAP
385 SUBDIRS += plugins/ldap
386 if MONOLITHIC
387 libstrongswan_la_LIBADD += plugins/ldap/libstrongswan-ldap.la
388 endif
389 endif
390
391 if USE_MYSQL
392 SUBDIRS += plugins/mysql
393 if MONOLITHIC
394 libstrongswan_la_LIBADD += plugins/mysql/libstrongswan-mysql.la
395 endif
396 endif
397
398 if USE_SQLITE
399 SUBDIRS += plugins/sqlite
400 if MONOLITHIC
401 libstrongswan_la_LIBADD += plugins/sqlite/libstrongswan-sqlite.la
402 endif
403 endif
404
405 if USE_PADLOCK
406 SUBDIRS += plugins/padlock
407 if MONOLITHIC
408 libstrongswan_la_LIBADD += plugins/padlock/libstrongswan-padlock.la
409 endif
410 endif
411
412 if USE_OPENSSL
413 SUBDIRS += plugins/openssl
414 if MONOLITHIC
415 libstrongswan_la_LIBADD += plugins/openssl/libstrongswan-openssl.la
416 endif
417 endif
418
419 if USE_GCRYPT
420 SUBDIRS += plugins/gcrypt
421 if MONOLITHIC
422 libstrongswan_la_LIBADD += plugins/gcrypt/libstrongswan-gcrypt.la
423 endif
424 endif
425
426 if USE_FIPS_PRF
427 SUBDIRS += plugins/fips_prf
428 if MONOLITHIC
429 libstrongswan_la_LIBADD += plugins/fips_prf/libstrongswan-fips-prf.la
430 endif
431 endif
432
433 if USE_AGENT
434 SUBDIRS += plugins/agent
435 if MONOLITHIC
436 libstrongswan_la_LIBADD += plugins/agent/libstrongswan-agent.la
437 endif
438 endif
439
440 if USE_KEYCHAIN
441 SUBDIRS += plugins/keychain
442 if MONOLITHIC
443 libstrongswan_la_LIBADD += plugins/keychain/libstrongswan-keychain.la
444 endif
445 endif
446
447 if USE_PKCS11
448 SUBDIRS += plugins/pkcs11
449 if MONOLITHIC
450 libstrongswan_la_LIBADD += plugins/pkcs11/libstrongswan-pkcs11.la
451 endif
452 endif
453
454 if USE_CTR
455 SUBDIRS += plugins/ctr
456 if MONOLITHIC
457 libstrongswan_la_LIBADD += plugins/ctr/libstrongswan-ctr.la
458 endif
459 endif
460
461 if USE_CCM
462 SUBDIRS += plugins/ccm
463 if MONOLITHIC
464 libstrongswan_la_LIBADD += plugins/ccm/libstrongswan-ccm.la
465 endif
466 endif
467
468 if USE_GCM
469 SUBDIRS += plugins/gcm
470 if MONOLITHIC
471 libstrongswan_la_LIBADD += plugins/gcm/libstrongswan-gcm.la
472 endif
473 endif
474
475 if USE_TEST_VECTORS
476 SUBDIRS += plugins/test_vectors
477 if MONOLITHIC
478 libstrongswan_la_LIBADD += plugins/test_vectors/libstrongswan-test-vectors.la
479 endif
480 endif
481
482 if UNITTESTS
483 if MONOLITHIC
484 SUBDIRS += .
485 endif
486 SUBDIRS += tests
487 endif