Annotation of embedaddon/strongswan/src/libtls/Makefile.am, revision 1.1.1.2

1.1       misho       1: AM_CPPFLAGS = \
                      2:        -I$(top_srcdir)/src/libstrongswan
                      3: 
1.1.1.2 ! misho       4: AM_CFLAGS = \
        !             5:        @COVERAGE_CFLAGS@
        !             6: 
1.1       misho       7: AM_LDFLAGS = \
                      8:        -no-undefined
                      9: 
                     10: ipseclib_LTLIBRARIES = libtls.la
                     11: libtls_la_SOURCES = \
                     12:        tls_protection.c tls_compression.c tls_fragmentation.c tls_alert.c \
1.1.1.2 ! misho      13:        tls_crypto.c tls_prf.c tls_hkdf.c tls_socket.c tls_eap.c tls_cache.c \
        !            14:        tls_aead_expl.c tls_aead_impl.c tls_aead_null.c tls_aead_seq.c tls_aead.c \
        !            15:        tls_peer.c tls_server.c tls.c
1.1       misho      16: 
                     17: libtls_la_LIBADD = \
                     18:        $(top_builddir)/src/libstrongswan/libstrongswan.la
                     19: 
                     20: if USE_WINDOWS
                     21:   libtls_la_LIBADD += -lws2_32
                     22: endif
                     23: 
                     24: if USE_DEV_HEADERS
                     25: tls_includedir = ${dev_headers}/tls
                     26: nobase_tls_include_HEADERS = \
                     27:        tls_protection.h tls_compression.h tls_fragmentation.h tls_alert.h \
1.1.1.2 ! misho      28:        tls_crypto.h tls_prf.h tls_hkdf.h tls_socket.h tls_eap.h tls_cache.h \
        !            29:        tls_peer.h tls_server.h tls_handshake.h tls_application.h tls_aead.h tls.h
1.1       misho      30: endif
                     31: 
                     32: SUBDIRS = . tests

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