blob: f1ff22e60e2566e1866c682dfe395bf9acc299e9 (
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 = \
-rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-osx-attr.la
else
plugin_LTLIBRARIES = libstrongswan-osx-attr.la
endif
libstrongswan_osx_attr_la_SOURCES = \
osx_attr_plugin.c osx_attr_plugin.h \
osx_attr_handler.c osx_attr_handler.h
libstrongswan_osx_attr_la_LDFLAGS = -module -avoid-version \
-framework SystemConfiguration -framework CoreFoundation
|