With the coming monolithic build using Android.mk files this won't be necessary anymore.
19 lines
397 B
Makefile
19 lines
397 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan
|
|
|
|
AM_CFLAGS = -rdynamic
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-sqlite.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-sqlite.la
|
|
endif
|
|
|
|
libstrongswan_sqlite_la_SOURCES = \
|
|
sqlite_plugin.h sqlite_plugin.c \
|
|
sqlite_database.h sqlite_database.c
|
|
|
|
libstrongswan_sqlite_la_LDFLAGS = -module -avoid-version
|
|
libstrongswan_sqlite_la_LIBADD = -lsqlite3
|
|
|