blob: 9aa853e13a203ef8ee50b4dc09fa99b76c059d46 (
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 = \
-rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-pem.la
else
plugin_LTLIBRARIES = libstrongswan-pem.la
endif
libstrongswan_pem_la_SOURCES = \
pem_plugin.h pem_plugin.c \
pem_builder.c pem_builder.h \
pem_encoder.c pem_encoder.h
libstrongswan_pem_la_LDFLAGS = -module -avoid-version
|