blob: 7dde99e5f1b0d7c8df3ea0693eebbd287a821993 (
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-nonce.la
else
plugin_LTLIBRARIES = libstrongswan-nonce.la
endif
libstrongswan_nonce_la_SOURCES = \
nonce_plugin.h nonce_plugin.c \
nonce_nonceg.c nonce_nonceg.h
libstrongswan_nonce_la_LDFLAGS = -module -avoid-version
|