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.
20 lines
415 B
Makefile
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)
|