Files
strongswan-ext/src/libstrongswan/plugins/mysql/Makefile.am
T
Martin Willi 19cb07b890 automake: replace INCLUDES by AM_CPPFLAGS
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.
2013-07-18 14:59:19 +02:00

20 lines
415 B
Makefile

AM_CPPFLAGS = \
-I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = \
$(MYSQLCFLAG) \
-rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-mysql.la
else
plugin_LTLIBRARIES = libstrongswan-mysql.la
endif
libstrongswan_mysql_la_SOURCES = \
mysql_plugin.h mysql_plugin.c \
mysql_database.h mysql_database.c
libstrongswan_mysql_la_LDFLAGS = -module -avoid-version
libstrongswan_mysql_la_LIBADD = $(MYSQLLIB)