diff options
author | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2007-04-12 20:30:08 +0000 |
---|---|---|
committer | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2007-04-12 20:30:08 +0000 |
commit | b0d8ed94fe9e74afb49fdf5f11e4add29879c65c (patch) | |
tree | b20167235628771046e940a82a906a6d0991ee4a /src/libstrongswan/Makefile.am | |
parent | ea939d07c84d2a8e51215458063fc05e9c399290 (diff) | |
download | vyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.tar.gz vyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.zip |
[svn-upgrade] Integrating new upstream version, strongswan (4.1.1)
Diffstat (limited to 'src/libstrongswan/Makefile.am')
-rw-r--r-- | src/libstrongswan/Makefile.am | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/libstrongswan/Makefile.am b/src/libstrongswan/Makefile.am new file mode 100644 index 000000000..b103be193 --- /dev/null +++ b/src/libstrongswan/Makefile.am @@ -0,0 +1,69 @@ +lib_LTLIBRARIES = libstrongswan.la + +libstrongswan_la_SOURCES = \ +credential_store.h \ +library.c library.h \ +chunk.c chunk.h \ +debug.c debug.h \ +enum.c enum.h \ +printf_hook.c printf_hook.h \ +asn1/asn1.c asn1/asn1.h \ +asn1/oid.c asn1/oid.h \ +asn1/pem.c asn1/pem.h \ +asn1/ttodata.c asn1/ttodata.h \ +crypto/ca.c crypto/ca.h \ +crypto/certinfo.c crypto/certinfo.h \ +crypto/crl.c crypto/crl.h \ +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\ +crypto/diffie_hellman.c crypto/diffie_hellman.h \ +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 \ +crypto/hashers/md5_hasher.c crypto/hashers/md5_hasher.h \ +crypto/hmac.c crypto/hmac.h \ +crypto/ocsp.c crypto/ocsp.h \ +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 \ +crypto/x509.c crypto/x509.h \ +utils/fetcher.c utils/fetcher.h \ +utils/host.c utils/host.h \ +utils/identification.c utils/identification.h \ +utils/iterator.h \ +utils/leak_detective.c utils/leak_detective.h \ +utils/lexparser.c utils/lexparser.h \ +utils/linked_list.c utils/linked_list.h \ +utils/randomizer.c utils/randomizer.h + +libstrongswan_la_LIBADD = -lgmp -lpthread + +INCLUDES = -I$(top_srcdir)/src/libstrongswan +EXTRA_DIST = asn1/oid.txt asn1/oid.pl +BUILT_SOURCES = asn1/oid.c asn1/oid.h +MAINTAINERCLEANFILES = asn1/oid.c asn1/oid.h + +if USE_LEAK_DETECTIVE + libstrongswan_la_LIBADD += -ldl + AM_CFLAGS = -DLEAK_DETECTIVE +endif + +if USE_LIBCURL + libstrongswan_la_LIBADD += -lcurl +endif + +if USE_LIBLDAP + libstrongswan_la_LIBADD += -lldap -llber +endif + +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 |