aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/xcbc
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2010-03-01 16:15:08 +0100
committerTobias Brunner <tobias@strongswan.org>2010-03-02 10:38:52 +0100
commit6ec60bb92bf2c6e4e564d5b55b25436c74485c56 (patch)
treecca93e37da5e8ef922c126230d2b7b4c3e721e39 /src/libstrongswan/plugins/xcbc
parent3724668b3d37df67f687cb718ded7fa87c748deb (diff)
downloadstrongswan-6ec60bb92bf2c6e4e564d5b55b25436c74485c56.tar.bz2
strongswan-6ec60bb92bf2c6e4e564d5b55b25436c74485c56.tar.xz
Link all enabled libstrongswan plugins into the library, link all enabled charon plugins into libcharon.
Diffstat (limited to 'src/libstrongswan/plugins/xcbc')
-rw-r--r--src/libstrongswan/plugins/xcbc/Makefile.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/libstrongswan/plugins/xcbc/Makefile.am b/src/libstrongswan/plugins/xcbc/Makefile.am
index 315b971d8..f8ae082fd 100644
--- a/src/libstrongswan/plugins/xcbc/Makefile.am
+++ b/src/libstrongswan/plugins/xcbc/Makefile.am
@@ -3,10 +3,13 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan
AM_CFLAGS = -rdynamic
+if MONOLITHIC
+noinst_LTLIBRARIES = libstrongswan-xcbc.la
+else
plugin_LTLIBRARIES = libstrongswan-xcbc.la
+libstrongswan_xcbc_la_LIBADD = $(top_builddir)/src/libstrongswan/libstrongswan.la
+endif
libstrongswan_xcbc_la_SOURCES = xcbc_plugin.h xcbc_plugin.c xcbc.h xcbc.c \
xcbc_prf.h xcbc_prf.c xcbc_signer.h xcbc_signer.c
libstrongswan_xcbc_la_LDFLAGS = -module -avoid-version
-libstrongswan_xcbc_la_LIBADD = $(top_builddir)/src/libstrongswan/libstrongswan.la
-