Annotation of embedaddon/strongswan/src/libstrongswan/plugins/openssl/Makefile.am, revision 1.1.1.2

1.1       misho       1: AM_CPPFLAGS = \
                      2:        -I$(top_srcdir)/src/libstrongswan \
                      3:        -DFIPS_MODE=${fips_mode}
                      4: 
1.1.1.2 ! misho       5: if USE_WINDOWS
        !             6: AM_CPPFLAGS += -DNOCRYPT
        !             7: endif
        !             8: 
1.1       misho       9: AM_CFLAGS = \
                     10:        $(PLUGIN_CFLAGS)
                     11: 
                     12: if MONOLITHIC
                     13: noinst_LTLIBRARIES = libstrongswan-openssl.la
                     14: else
                     15: plugin_LTLIBRARIES = libstrongswan-openssl.la
                     16: endif
                     17: 
                     18: libstrongswan_openssl_la_SOURCES = \
                     19:        openssl_plugin.h openssl_plugin.c \
                     20:        openssl_util.c openssl_util.h \
                     21:        openssl_crypter.c openssl_crypter.h \
                     22:        openssl_hasher.c openssl_hasher.h \
                     23:        openssl_sha1_prf.c openssl_sha1_prf.h \
                     24:        openssl_diffie_hellman.c openssl_diffie_hellman.h \
                     25:        openssl_rsa_private_key.c openssl_rsa_private_key.h \
                     26:        openssl_rsa_public_key.c openssl_rsa_public_key.h \
                     27:        openssl_ec_diffie_hellman.c openssl_ec_diffie_hellman.h \
                     28:        openssl_ec_private_key.c openssl_ec_private_key.h \
                     29:        openssl_ec_public_key.c openssl_ec_public_key.h \
                     30:        openssl_x509.c openssl_x509.h \
                     31:        openssl_crl.c openssl_crl.h \
                     32:        openssl_pkcs7.c openssl_pkcs7.h \
                     33:        openssl_pkcs12.c openssl_pkcs12.h \
                     34:        openssl_rng.c openssl_rng.h \
                     35:        openssl_hmac.c openssl_hmac.h \
                     36:        openssl_aead.c openssl_aead.h \
                     37:        openssl_x_diffie_hellman.c openssl_x_diffie_hellman.h \
                     38:        openssl_ed_private_key.c openssl_ed_private_key.h \
                     39:        openssl_ed_public_key.c openssl_ed_public_key.h \
                     40:        openssl_xof.c openssl_xof.h
                     41: 
                     42: libstrongswan_openssl_la_LDFLAGS = -module -avoid-version
                     43: libstrongswan_openssl_la_LIBADD  = $(OPENSSL_LIB)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>