blob: abee58e72ca0d0c14777cb60648e2e2b324ea983 (
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
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-ctr.la
else
plugin_LTLIBRARIES = libstrongswan-ctr.la
endif
libstrongswan_ctr_la_SOURCES = \
ctr_plugin.h ctr_plugin.c \
ctr_ipsec_crypter.h ctr_ipsec_crypter.c
libstrongswan_ctr_la_LDFLAGS = -module -avoid-version
|