blob: 1455625226cac0e61baee56aae6f55dc65af11f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan \
-I$(top_srcdir)/src/libhydra \
-I$(top_srcdir)/src/libcharon
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-dnscert.la
else
plugin_LTLIBRARIES = libstrongswan-dnscert.la
endif
libstrongswan_dnscert_la_SOURCES = \
dnscert_plugin.h dnscert_plugin.c \
dnscert_cred.h dnscert_cred.c \
dnscert.h dnscert.c
libstrongswan_dnscert_la_LDFLAGS = -module -avoid-version
|