Annotation of embedaddon/strongswan/src/libtls/Makefile.am, revision 1.1.1.1
1.1 misho 1: AM_CPPFLAGS = \
2: -I$(top_srcdir)/src/libstrongswan
3:
4: AM_LDFLAGS = \
5: -no-undefined
6:
7: ipseclib_LTLIBRARIES = libtls.la
8: libtls_la_SOURCES = \
9: tls_protection.c tls_compression.c tls_fragmentation.c tls_alert.c \
10: tls_crypto.c tls_prf.c tls_socket.c tls_eap.c tls_cache.c tls_peer.c \
11: tls_aead_expl.c tls_aead_impl.c tls_aead_null.c tls_aead.c \
12: tls_server.c tls.c
13:
14: libtls_la_LIBADD = \
15: $(top_builddir)/src/libstrongswan/libstrongswan.la
16:
17: if USE_WINDOWS
18: libtls_la_LIBADD += -lws2_32
19: endif
20:
21: if USE_DEV_HEADERS
22: tls_includedir = ${dev_headers}/tls
23: nobase_tls_include_HEADERS = \
24: tls_protection.h tls_compression.h tls_fragmentation.h tls_alert.h \
25: tls_crypto.h tls_prf.h tls_socket.h tls_eap.h tls_cache.h tls_peer.h \
26: tls_server.h tls_handshake.h tls_application.h tls_aead.h tls.h
27: endif
28:
29: SUBDIRS = . tests
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>