With the coming monolithic build using Android.mk files this won't be necessary anymore.
18 lines
377 B
Makefile
18 lines
377 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan
|
|
|
|
AM_CFLAGS = -rdynamic
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-pkcs1.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-pkcs1.la
|
|
endif
|
|
|
|
libstrongswan_pkcs1_la_SOURCES = \
|
|
pkcs1_plugin.h pkcs1_plugin.c \
|
|
pkcs1_encoder.h pkcs1_encoder.c \
|
|
pkcs1_builder.h pkcs1_builder.c
|
|
|
|
libstrongswan_pkcs1_la_LDFLAGS = -module -avoid-version
|