INCLUDES are now deprecated and throw warnings when using automake 1.13. We now also differentiate AM_CPPFLAGS and AM_CFLAGS, where includes and defines are passed to AM_CPPFLAGS only.
18 lines
356 B
Makefile
18 lines
356 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/libstrongswan
|
|
|
|
AM_CFLAGS = \
|
|
-rdynamic
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-pkcs12.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-pkcs12.la
|
|
endif
|
|
|
|
libstrongswan_pkcs12_la_SOURCES = \
|
|
pkcs12_plugin.h pkcs12_plugin.c \
|
|
pkcs12_decode.h pkcs12_decode.c
|
|
|
|
libstrongswan_pkcs12_la_LDFLAGS = -module -avoid-version
|