blob: 450995c9c59ad622054017ac359759ada79246d8 (
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-lookip.la
else
plugin_LTLIBRARIES = libstrongswan-lookip.la
endif
libstrongswan_lookip_la_SOURCES = lookip_plugin.h lookip_plugin.c \
lookip_listener.h lookip_listener.c lookip_msg.h \
lookip_socket.h lookip_socket.c
libstrongswan_lookip_la_LDFLAGS = -module -avoid-version
ipsec_PROGRAMS = lookip
lookip_SOURCES = lookip.c
|