With the coming monolithic build using Android.mk files this won't be necessary anymore.
19 lines
405 B
Makefile
19 lines
405 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan
|
|
|
|
AM_CFLAGS = -rdynamic $(MYSQLCFLAG)
|
|
|
|
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)
|
|
|