blob: fb3de493721e74cd2af3ea79aaa8658cfa19ec38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/libhydra \
-I$(top_srcdir)/src/libcharon -I$(top_srcdir)/src/libtls
AM_CFLAGS = -rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-eap-tls.la
else
plugin_LTLIBRARIES = libstrongswan-eap-tls.la
endif
libstrongswan_eap_tls_la_SOURCES = \
eap_tls_plugin.h eap_tls_plugin.c eap_tls.h eap_tls.c
libstrongswan_eap_tls_la_LDFLAGS = -module -avoid-version
|