blob: f7e7e1a72277643e38aea118a2bd80d7e9933366 (
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-fips-prf.la
else
plugin_LTLIBRARIES = libstrongswan-fips-prf.la
endif
libstrongswan_fips_prf_la_SOURCES = \
fips_prf_plugin.h fips_prf_plugin.c fips_prf.c fips_prf.h
libstrongswan_fips_prf_la_LDFLAGS = -module -avoid-version
|