blob: 62695aabe9be620b064f88ad3271d879834bfc39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan \
-I$(top_srcdir)/src/libcharon
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-coupling.la
else
plugin_LTLIBRARIES = libstrongswan-coupling.la
endif
libstrongswan_coupling_la_SOURCES = coupling_plugin.h coupling_plugin.c \
coupling_validator.h coupling_validator.c
libstrongswan_coupling_la_LDFLAGS = -module -avoid-version
|