blob: 064a759dd23f6f5e69ac63a761b1960588584817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/libhydra \
-I$(top_srcdir)/src/libcharon
AM_CFLAGS = -rdynamic \
-DIPSEC_PIDDIR=\"${piddir}\"
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-whitelist.la
else
plugin_LTLIBRARIES = libstrongswan-whitelist.la
endif
libstrongswan_whitelist_la_SOURCES = whitelist_plugin.h whitelist_plugin.c \
whitelist_listener.h whitelist_listener.c whitelist_msg.h \
whitelist_control.h whitelist_control.c
libstrongswan_whitelist_la_LDFLAGS = -module -avoid-version
ipsec_PROGRAMS = whitelist
whitelist_SOURCES = whitelist.c
|