blob: 95c414204f386411df65b49f156a2b0c2dbb5ea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
INCLUDES = -I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = -rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-blowfish.la
else
plugin_LTLIBRARIES = libstrongswan-blowfish.la
endif
libstrongswan_blowfish_la_SOURCES = \
blowfish_plugin.h blowfish_plugin.c blowfish_crypter.c blowfish_crypter.h \
bf_skey.c blowfish.h bf_pi.h bf_locl.h bf_enc.c
libstrongswan_blowfish_la_LDFLAGS = -module -avoid-version
|