INCLUDES are now deprecated and throw warnings when using automake 1.13. We now also differentiate AM_CPPFLAGS and AM_CFLAGS, where includes and defines are passed to AM_CPPFLAGS only.
17 lines
355 B
Makefile
17 lines
355 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/libstrongswan
|
|
|
|
AM_CFLAGS = \
|
|
-rdynamic
|
|
|
|
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
|