blob: ce573135d621364575915f7c391eafd05e339bce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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)
|