File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / src / libtls / Makefile.am
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 00:20:09 2021 UTC (3 years, 6 months ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, HEAD
strongswan 5.9.2

    1: AM_CPPFLAGS = \
    2: 	-I$(top_srcdir)/src/libstrongswan
    3: 
    4: AM_CFLAGS = \
    5: 	@COVERAGE_CFLAGS@
    6: 
    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 \
   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
   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 \
   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
   30: endif
   31: 
   32: SUBDIRS = . tests

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