]> git.ipfire.org Git - thirdparty/strongswan.git/blobdiff - src/libstrongswan/Makefile.am
implemented a pgp plugin providing PGP key parsing builders
[thirdparty/strongswan.git] / src / libstrongswan / Makefile.am
index 435f8bbbab30ae47aa95cd12ebec710131b1d677..23c42f6744e7089be75a1c85e03512f0f7d9a19a 100644 (file)
@@ -1,14 +1,6 @@
 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 += \
+libstrongswan_la_SOURCES = \
 library.c library.h \
 chunk.c chunk.h \
 debug.c debug.h \
@@ -16,17 +8,20 @@ enum.c enum.h \
 settings.h settings.c \
 printf_hook.c printf_hook.h \
 asn1/asn1.c asn1/asn1.h \
+asn1/asn1_parser.c asn1/asn1_parser.h \
 asn1/oid.c asn1/oid.h \
-asn1/pem.c asn1/pem.h \
-asn1/ttodata.c asn1/ttodata.h \
 crypto/crypters/crypter.c crypto/crypters/crypter.h \
 crypto/hashers/hasher.h crypto/hashers/hasher.c \
 crypto/pkcs9.c crypto/pkcs9.h \
+crypto/proposal/proposal_keywords.c crypto/proposal/proposal_keywords.h \
 crypto/prfs/prf.c crypto/prfs/prf.h \
+crypto/rngs/rng.c crypto/rngs/rng.h \
 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 \
+crypto/crypto_tester.c crypto/crypto_tester.h \
+crypto/diffie_hellman.c crypto/diffie_hellman.h \
+crypto/transform.c crypto/transform.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 \
@@ -34,54 +29,81 @@ 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/ac.c \
+credentials/certificates/ac.h \
 credentials/certificates/crl.h credentials/certificates/crl.c \
-credentials/certificates/ocsp_request.h credentials/certificates/ocsp_request.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 \
+fetcher/fetcher.h fetcher/fetcher_manager.h fetcher/fetcher_manager.c \
+pgp/pgp.c pgp/pgp.h \
 utils.h utils.c \
 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/hashtable.c utils/hashtable.h \
 utils/enumerator.c utils/enumerator.h \
 utils/optionsfrom.c utils/optionsfrom.h \
-utils/randomizer.c utils/randomizer.h \
 utils/mutex.c utils/mutex.h \
+utils/backtrace.c utils/backtrace.h \
 plugins/plugin_loader.c plugins/plugin_loader.h plugins/plugin.h
 
-if USE_INTEGRITY_TEST
-  libstrongswan_la_SOURCES += \
-  fips/fips_canister_end.c
-endif
-
-libstrongswan_la_LIBADD = -lpthread -ldl
+libstrongswan_la_LIBADD = -lpthread $(DLLIB) $(BTLIB) $(SOCKLIB)
 
 INCLUDES = -I$(top_srcdir)/src/libstrongswan
-AM_CFLAGS =
+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
 
-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_LOCK_PROFILER
+  AM_CFLAGS += -DLOCK_PROFILER
+endif
+
+if USE_INTEGRITY_TEST
+  AM_CFLAGS += -DINTEGRITY_TEST
+  libstrongswan_la_SOURCES += \
+    integrity_checker.c integrity_checker.h
+endif
+
+if USE_VSTR
+  libstrongswan_la_LIBADD += -lvstr
+endif
+
+EXTRA_DIST = \
+asn1/oid.txt asn1/oid.pl \
+crypto/proposal/proposal_keywords.txt
+
+BUILT_SOURCES = \
+$(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
+$(srcdir)/crypto/proposal/proposal_keywords.c
+
+MAINTAINERCLEANFILES = \
+$(srcdir)/asn1/oid.c $(srcdir)/asn1/oid.h \
+$(srcdir)/crypto/proposal/proposal_keywords.c
+
+$(srcdir)/asn1/oid.c : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
+               (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
 
-asn1/oid.c :   asn1/oid.txt asn1/oid.pl
-               cd asn1 && $(PERL) oid.pl
+$(srcdir)/asn1/oid.h : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt
+               (cd $(srcdir)/asn1/ && $(PERL) oid.pl)
 
-asn1/oid.h :   asn1/oid.txt asn1/oid.pl
-               cd asn1 && $(PERL) oid.pl
+$(srcdir)/crypto/proposal/proposal_keywords.c: $(srcdir)/crypto/proposal/proposal_keywords.txt \
+                                                                                               $(srcdir)/crypto/proposal/proposal_keywords.h
+               $(GPERF) -N proposal_get_token -m 10 -C -G -c -t -D < \
+                                                                                               $(srcdir)/crypto/proposal/proposal_keywords.txt > $@
 
 
 # build plugins with their own Makefile
 #######################################
 
-SUBDIRS = 
+SUBDIRS = .
 
 if USE_AES
   SUBDIRS += plugins/aes
@@ -91,6 +113,14 @@ if USE_DES
   SUBDIRS += plugins/des
 endif
 
+if USE_BLOWFISH
+  SUBDIRS += plugins/blowfish
+endif
+
+if USE_MD4
+  SUBDIRS += plugins/md4
+endif
+
 if USE_MD5
   SUBDIRS += plugins/md5
 endif
@@ -111,14 +141,38 @@ 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_PKCS1
+  SUBDIRS += plugins/pkcs1
+endif
+
+if USE_PGP
+  SUBDIRS += plugins/pgp
+endif
+
+if USE_PEM
+  SUBDIRS += plugins/pem
+endif
+
 if USE_CURL
   SUBDIRS += plugins/curl
 endif
@@ -135,17 +189,22 @@ if USE_SQLITE
   SUBDIRS += plugins/sqlite
 endif
 
+if USE_PADLOCK
+  SUBDIRS += plugins/padlock
+endif
 
-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
+if USE_OPENSSL
+  SUBDIRS += plugins/openssl
+endif
 
-BUILT_SOURCES += fips_signature.h
-CLEANFILES = fips_signature.h fips_signer
+if USE_GCRYPT
+  SUBDIRS += plugins/gcrypt
+endif
+
+if USE_AGENT
+  SUBDIRS += plugins/agent
+endif
 
-fips_signature.h : fips_signer
-                  ./fips_signer
+if USE_TEST_VECTORS
+  SUBDIRS += plugins/test_vectors
 endif