blob: 17bcc8d98acc317b90de40671c84f4a1c2d15c84 (
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 = \
-rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-curl.la
else
plugin_LTLIBRARIES = libstrongswan-curl.la
endif
libstrongswan_curl_la_SOURCES = \
curl_plugin.h curl_plugin.c curl_fetcher.c curl_fetcher.h
libstrongswan_curl_la_LDFLAGS = -module -avoid-version
libstrongswan_curl_la_LIBADD = -lcurl
|