strongswan/src/libstrongswan/Makefile.am

182 lines
4.0 KiB
Makefile
Raw Normal View History

lib_LTLIBRARIES = libstrongswan.la
if USE_INTEGRITY_TEST
libstrongswan_la_SOURCES = \
fips/fips_canister_start.c \
fips/fips.c fips/fips.h
else
libstrongswan_la_SOURCES =
endif
libstrongswan_la_SOURCES += \
2006-06-16 05:52:52 +00:00
library.c library.h \
chunk.c chunk.h \
debug.c debug.h \
enum.c enum.h \
settings.h settings.c \
printf_hook.c printf_hook.h \
2006-06-16 05:52:52 +00:00
asn1/asn1.c asn1/asn1.h \
2008-04-26 09:24:14 +00:00
asn1/asn1_parser.c asn1/asn1_parser.h \
2007-02-23 15:14:59 +00:00
asn1/oid.c asn1/oid.h \
2006-06-16 05:52:52 +00:00
asn1/pem.c asn1/pem.h \
crypto/crypters/crypter.c crypto/crypters/crypter.h \
crypto/hashers/hasher.h crypto/hashers/hasher.c \
crypto/pkcs9.c crypto/pkcs9.h \
2007-02-23 15:14:59 +00:00
crypto/prfs/prf.c crypto/prfs/prf.h \
crypto/rngs/rng.c crypto/rngs/rng.h \
2007-02-23 15:14:59 +00:00
crypto/prf_plus.h crypto/prf_plus.c \
crypto/signers/signer.c crypto/signers/signer.h \
crypto/diffie_hellman.c crypto/diffie_hellman.h \
crypto/crypto_factory.c crypto/crypto_factory.h \
credentials/credential_factory.c credentials/credential_factory.h \
credentials/builder.c credentials/builder.h \
credentials/keys/private_key.c credentials/keys/private_key.h \
credentials/keys/public_key.c credentials/keys/public_key.h \
credentials/keys/shared_key.c credentials/keys/shared_key.h \
credentials/certificates/certificate.c credentials/certificates/certificate.h \
credentials/certificates/x509.h credentials/certificates/x509.c \
credentials/certificates/ac.h \
credentials/certificates/crl.h credentials/certificates/crl.c \
credentials/certificates/ocsp_request.h \
credentials/certificates/ocsp_response.h credentials/certificates/ocsp_response.c \
fetcher/fetcher.h fetcher/fetcher_manager.h fetcher/fetcher_manager.c \
database/database.h database/database_factory.h database/database_factory.c \
utils.h utils.c \
2006-06-16 05:52:52 +00:00
utils/host.c utils/host.h \
2007-02-23 15:14:59 +00:00
utils/identification.c utils/identification.h \
utils/iterator.h \
2006-06-16 05:52:52 +00:00
utils/lexparser.c utils/lexparser.h \
2007-02-23 15:14:59 +00:00
utils/linked_list.c utils/linked_list.h \
2008-12-03 09:32:16 +00:00
utils/hashtable.c utils/hashtable.h \
utils/enumerator.c utils/enumerator.h \
2007-09-18 11:23:52 +00:00
utils/optionsfrom.c utils/optionsfrom.h \
utils/mutex.c utils/mutex.h \
utils/backtrace.c utils/backtrace.h \
plugins/plugin_loader.c plugins/plugin_loader.h plugins/plugin.h
libstrongswan_la_LIBADD = -lpthread $(DLLIB)
INCLUDES = -I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = \
-DIPSEC_DIR=\"${ipsecdir}\" \
-DIPSEC_PLUGINDIR=\"${plugindir}\"
if USE_LEAK_DETECTIVE
AM_CFLAGS += -DLEAK_DETECTIVE
libstrongswan_la_SOURCES += \
utils/leak_detective.c utils/leak_detective.h
endif
if USE_LOCK_PROFILER
AM_CFLAGS += -DLOCK_PROFILER
endif
if USE_INTEGRITY_TEST
libstrongswan_la_SOURCES += \
fips/fips_canister_end.c
2007-04-06 09:44:06 +00:00
endif
if USE_VSTR
libstrongswan_la_LIBADD += -lvstr
endif
EXTRA_DIST = asn1/oid.txt asn1/oid.pl
BUILT_SOURCES = $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h
MAINTAINERCLEANFILES = $(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h
$(srcdir)/asn1/oid.c : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
(cd $(srcdir)/asn1/ && $(PERL) oid.pl)
$(srcdir)/asn1/oid.h : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
(cd $(srcdir)/asn1/ && $(PERL) oid.pl)
# build plugins with their own Makefile
#######################################
SUBDIRS = .
if USE_AES
SUBDIRS += plugins/aes
endif
if USE_DES
SUBDIRS += plugins/des
endif
2009-02-19 10:06:58 +00:00
if USE_MD4
SUBDIRS += plugins/md4
endif
if USE_MD5
SUBDIRS += plugins/md5
endif
if USE_SHA1
SUBDIRS += plugins/sha1
endif
if USE_SHA2
SUBDIRS += plugins/sha2
endif
if USE_FIPS_PRF
SUBDIRS += plugins/fips_prf
endif
if USE_GMP
SUBDIRS += plugins/gmp
endif
if USE_RANDOM
SUBDIRS += plugins/random
endif
if USE_HMAC
SUBDIRS += plugins/hmac
endif
if USE_XCBC
SUBDIRS += plugins/xcbc
endif
if USE_X509
SUBDIRS += plugins/x509
endif
if USE_PUBKEY
SUBDIRS += plugins/pubkey
endif
if USE_CURL
SUBDIRS += plugins/curl
endif
if USE_LDAP
SUBDIRS += plugins/ldap
endif
if USE_MYSQL
SUBDIRS += plugins/mysql
endif
if USE_SQLITE
SUBDIRS += plugins/sqlite
endif
if USE_PADLOCK
SUBDIRS += plugins/padlock
endif
if USE_OPENSSL
SUBDIRS += plugins/openssl
endif
if USE_AGENT
SUBDIRS += plugins/agent
endif
if USE_INTEGRITY_TEST
2008-08-19 18:51:30 +00:00
SUBDIRS += fips
endif