blob: f6b00a71e9661bba0e5994b9e061f356a78cdc65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = \
$(PLUGIN_CFLAGS)
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-winhttp.la
else
plugin_LTLIBRARIES = libstrongswan-winhttp.la
endif
libstrongswan_winhttp_la_SOURCES = \
winhttp_fetcher.c winhttp_fetcher.h \
winhttp_plugin.c winhttp_plugin.h
libstrongswan_winhttp_la_LDFLAGS = -module -avoid-version
libstrongswan_winhttp_la_LIBADD = -lwinhttp
|