blob: 893171aabc85eb585cc6039d94151583ce43cf17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = -rdynamic
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
|