blob: 7ccf58ce60f3c51ec7078245e858bea7fbe22c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-sha3.la
else
plugin_LTLIBRARIES = libstrongswan-sha3.la
endif
libstrongswan_sha3_la_SOURCES = \
sha3_plugin.h sha3_plugin.c sha3_hasher.c sha3_hasher.h
libstrongswan_sha3_la_LDFLAGS = -module -avoid-version
|