blob: e5bde3f7a45c648ab18185f6d171d6d96501ae91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan \
-I$(top_srcdir)/src/libcharon
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-counters.la
else
plugin_LTLIBRARIES = libstrongswan-counters.la
endif
libstrongswan_counters_la_SOURCES = \
counters_plugin.h counters_plugin.c \
counters_listener.h counters_listener.c \
counters_query.h
libstrongswan_counters_la_LDFLAGS = -module -avoid-version
|