blob: 408872c5e3a93f6dc430a12e174174667d294faf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/libhydra \
-I$(top_srcdir)/src/libcharon -I$(top_srcdir)/src/libsimaka
AM_CFLAGS = -rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-eap-sim.la
else
plugin_LTLIBRARIES = libstrongswan-eap-sim.la
endif
libstrongswan_eap_sim_la_SOURCES = \
eap_sim_plugin.h eap_sim_plugin.c \
eap_sim_peer.h eap_sim_peer.c \
eap_sim_server.h eap_sim_server.c
libstrongswan_eap_sim_la_LDFLAGS = -module -avoid-version
|