blob: 3f892728d33419e6da3343b5ade9348ae7dea777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = \
-rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-rc2.la
else
plugin_LTLIBRARIES = libstrongswan-rc2.la
endif
libstrongswan_rc2_la_SOURCES = \
rc2_plugin.h rc2_plugin.c rc2_crypter.c rc2_crypter.h
libstrongswan_rc2_la_LDFLAGS = -module -avoid-version
|