blob: 5cfeaf7f0157af83f4abdfa114ffdd8f925b5e68 (
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-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
|