blob: 228b4708d073dfdd1371c601b43a9883d932dac5 (
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-gcm.la
else
plugin_LTLIBRARIES = libstrongswan-gcm.la
endif
libstrongswan_gcm_la_SOURCES = \
gcm_plugin.h gcm_plugin.c \
gcm_aead.h gcm_aead.c
libstrongswan_gcm_la_LDFLAGS = -module -avoid-version
|