Files
strongswan-ext/src/libcharon/plugins/forecast/Makefile.am
T
Tobias Brunner 89b60e9fd7 configure: Use pkg-config to detect libiptc used by connmark/forecast
This ensures the library is available.  On Debian/Ubuntu it is a dynamic
library provided by the iptables-dev package.
2015-02-23 12:35:28 +01:00

22 lines
562 B
Makefile

AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan \
-I$(top_srcdir)/src/libhydra \
-I$(top_srcdir)/src/libcharon
AM_CFLAGS = \
$(PLUGIN_CFLAGS) $(libiptc_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-forecast.la
else
plugin_LTLIBRARIES = libstrongswan-forecast.la
endif
libstrongswan_forecast_la_SOURCES = \
forecast_listener.h forecast_listener.c \
forecast_forwarder.h forecast_forwarder.c \
forecast_plugin.h forecast_plugin.c
libstrongswan_forecast_la_LDFLAGS = -module -avoid-version
libstrongswan_forecast_la_LIBADD = $(libiptc_LIBS)