blob: 6b1ee2fee37bc5c7c1443aa46c5a7512520e5ad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
INCLUDES = -I${linux_headers} -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
AM_CFLAGS = -rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-socket-default.la
else
plugin_LTLIBRARIES = libstrongswan-socket-default.la
endif
libstrongswan_socket_default_la_SOURCES = \
socket_default_socket.h socket_default_socket.c \
socket_default_plugin.h socket_default_plugin.c
libstrongswan_socket_default_la_LDFLAGS = -module -avoid-version
|