strongswan/src/libstrongswan/Makefile.am

104 lines
3.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 += \
credential_store.h \
2006-06-16 05:52:52 +00:00
library.c library.h \
chunk.c chunk.h \
debug.c debug.h \
enum.c enum.h \
printf_hook.c printf_hook.h \
2006-06-16 05:52:52 +00:00
asn1/asn1.c asn1/asn1.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 \
asn1/ttodata.c asn1/ttodata.h \
crypto/ac.c crypto/ac.h \
2007-02-23 15:14:59 +00:00
crypto/ca.c crypto/ca.h \
crypto/certinfo.c crypto/certinfo.h \
crypto/crl.c crypto/crl.h \
2006-06-16 05:52:52 +00:00
crypto/crypters/crypter.c crypto/crypters/crypter.h \
crypto/crypters/aes_cbc_crypter.c crypto/crypters/aes_cbc_crypter.h \
crypto/crypters/des_crypter.c crypto/crypters/des_crypter.h \
2007-02-23 15:14:59 +00:00
crypto/diffie_hellman.c crypto/diffie_hellman.h \
2006-06-16 05:52:52 +00:00
crypto/hashers/hasher.h crypto/hashers/hasher.c \
crypto/hashers/sha1_hasher.c crypto/hashers/sha1_hasher.h \
crypto/hashers/sha2_hasher.c crypto/hashers/sha2_hasher.h \
2006-06-16 05:52:52 +00:00
crypto/hashers/md5_hasher.c crypto/hashers/md5_hasher.h \
crypto/hmac.c crypto/hmac.h \
crypto/ietf_attr_list.c crypto/ietf_attr_list.h \
2007-02-28 20:31:07 +00:00
crypto/ocsp.c crypto/ocsp.h \
2007-10-07 13:35:42 +00:00
crypto/pkcs7.c crypto/pkcs7.h \
crypto/pkcs9.c crypto/pkcs9.h \
2007-02-23 15:14:59 +00:00
crypto/prfs/fips_prf.c crypto/prfs/fips_prf.h \
crypto/prfs/hmac_prf.c crypto/prfs/hmac_prf.h \
crypto/prfs/prf.c crypto/prfs/prf.h \
crypto/prf_plus.h crypto/prf_plus.c \
crypto/rsa/rsa_private_key.c crypto/rsa/rsa_private_key.h \
crypto/rsa/rsa_public_key.h crypto/rsa/rsa_public_key.c \
crypto/signers/hmac_signer.c crypto/signers/hmac_signer.h \
crypto/signers/signer.c crypto/signers/signer.h \
2006-06-16 05:52:52 +00:00
crypto/x509.c crypto/x509.h \
2007-03-07 14:13:01 +00:00
utils/fetcher.c utils/fetcher.h \
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 \
utils/leak_detective.c utils/leak_detective.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 \
utils/enumerator.c utils/enumerator.h \
2007-09-18 11:23:52 +00:00
utils/optionsfrom.c utils/optionsfrom.h \
2007-02-23 15:14:59 +00:00
utils/randomizer.c utils/randomizer.h
if USE_INTEGRITY_TEST
libstrongswan_la_SOURCES += \
fips/fips_canister_end.c
endif
libstrongswan_la_LIBADD = -lgmp -lpthread
INCLUDES = -I$(top_srcdir)/src/libstrongswan
if USE_LEAK_DETECTIVE
libstrongswan_la_LIBADD += -ldl
AM_CFLAGS = -DLEAK_DETECTIVE
endif
if USE_LIBCURL
libstrongswan_la_LIBADD += -lcurl
endif
2007-04-06 09:44:06 +00:00
if USE_LIBLDAP
libstrongswan_la_LIBADD += -lldap -llber
endif
EXTRA_DIST = asn1/oid.txt asn1/oid.pl
BUILT_SOURCES = asn1/oid.c asn1/oid.h
MAINTAINERCLEANFILES = asn1/oid.c asn1/oid.h
asn1/oid.c : asn1/oid.txt asn1/oid.pl
cd asn1 && $(PERL) oid.pl
asn1/oid.h : asn1/oid.txt asn1/oid.pl
cd asn1 && $(PERL) oid.pl
if USE_INTEGRITY_TEST
# build fips_signer which in turn builds fips_signature.h
#########################################################
noinst_PROGRAMS = fips_signer
fips_signer_SOURCES = fips/fips_signer.c
fips_signer_LDADD = libstrongswan.la
BUILT_SOURCES += fips_signature.h
CLEANFILES = fips_signature.h fips_signer
fips_signature.h : fips_signer
./fips_signer
endif