blob: 333d97401ae84b6cd6017db58d4c1b9884270826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-ldap.la
else
plugin_LTLIBRARIES = libstrongswan-ldap.la
endif
libstrongswan_ldap_la_SOURCES = \
ldap_plugin.h ldap_plugin.c ldap_fetcher.h ldap_fetcher.c
libstrongswan_ldap_la_LDFLAGS = -module -avoid-version
libstrongswan_ldap_la_LIBADD = -lldap -llber
|