Annotation of embedaddon/strongswan/src/libstrongswan/plugins/test_vectors/Makefile.am, revision 1.1.1.1

1.1       misho       1: AM_CPPFLAGS = \
                      2:        -I$(top_srcdir)/src/libstrongswan
                      3: 
                      4: AM_CFLAGS = \
                      5:        $(PLUGIN_CFLAGS)
                      6: 
                      7: if MONOLITHIC
                      8: noinst_LTLIBRARIES = libstrongswan-test-vectors.la
                      9: else
                     10: plugin_LTLIBRARIES = libstrongswan-test-vectors.la
                     11: endif
                     12: 
                     13: libstrongswan_test_vectors_la_SOURCES = \
                     14:        test_vectors_plugin.h test_vectors_plugin.c test_vectors.h \
                     15:        test_vectors/3des_cbc.c \
                     16:        test_vectors/aes_cbc.c \
                     17:        test_vectors/aes_ecb.c \
                     18:        test_vectors/aes_ctr.c \
                     19:        test_vectors/aes_xcbc.c \
                     20:        test_vectors/aes_cmac.c \
                     21:        test_vectors/aes_ccm.c \
                     22:        test_vectors/aes_gcm.c \
                     23:        test_vectors/chacha20poly1305.c \
                     24:        test_vectors/chacha20_xof.c \
                     25:        test_vectors/blowfish.c \
                     26:        test_vectors/camellia_cbc.c \
                     27:        test_vectors/camellia_ctr.c \
                     28:        test_vectors/camellia_xcbc.c \
                     29:        test_vectors/cast.c \
                     30:        test_vectors/des.c \
                     31:        test_vectors/idea.c \
                     32:        test_vectors/null.c \
                     33:        test_vectors/rc2.c \
                     34:        test_vectors/rc5.c \
                     35:        test_vectors/serpent_cbc.c \
                     36:        test_vectors/twofish_cbc.c \
                     37:        test_vectors/md2.c \
                     38:        test_vectors/md4.c \
                     39:        test_vectors/md5.c \
                     40:        test_vectors/md5_hmac.c \
                     41:        test_vectors/sha1.c \
                     42:        test_vectors/sha1_hmac.c \
                     43:        test_vectors/sha2.c \
                     44:        test_vectors/sha2_hmac.c \
                     45:        test_vectors/sha3.c \
                     46:        test_vectors/sha3_shake.c \
                     47:        test_vectors/fips_prf.c \
                     48:        test_vectors/modp.c \
                     49:        test_vectors/modpsub.c \
                     50:        test_vectors/ecp.c \
                     51:        test_vectors/ecpbp.c \
                     52:        test_vectors/curve25519.c \
                     53:        test_vectors/curve448.c \
                     54:        test_vectors/drbg_ctr.c \
                     55:        test_vectors/drbg_hmac.c \
                     56:        test_vectors/rng.c
                     57: 
                     58: libstrongswan_test_vectors_la_LDFLAGS = -module -avoid-version

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