blob: ba16f413aa665a940e80380606918bceda090aa7 (
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 = \
-rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-acert.la
else
plugin_LTLIBRARIES = libstrongswan-acert.la
endif
libstrongswan_acert_la_SOURCES = \
acert_validator.h acert_validator.c \
acert_plugin.h acert_plugin.c
libstrongswan_acert_la_LDFLAGS = -module -avoid-version
|