With the coming monolithic build using Android.mk files this won't be necessary anymore.
17 lines
350 B
Makefile
17 lines
350 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan
|
|
|
|
AM_CFLAGS = -rdynamic
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-dnskey.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-dnskey.la
|
|
endif
|
|
|
|
libstrongswan_dnskey_la_SOURCES = \
|
|
dnskey_plugin.h dnskey_plugin.c \
|
|
dnskey_builder.h dnskey_builder.c
|
|
|
|
libstrongswan_dnskey_la_LDFLAGS = -module -avoid-version
|