blob: 49dd3e22587cb4712062f53988c1b697c57f335a (
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-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
|