diff options
author | Martin Willi <martin@revosec.ch> | 2010-03-19 18:55:23 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2010-08-03 15:39:25 +0200 |
commit | 0b71bc7af047f1a20bbad8a38d33b01452c35613 (patch) | |
tree | e20e0292fda6b32dd6415414e39336b6d868ac77 /src/libcharon/plugins/eap_tls/Makefile.am | |
parent | 400df4ca7c659d2f371129d18c6dedf82840c2ea (diff) | |
download | strongswan-0b71bc7af047f1a20bbad8a38d33b01452c35613.tar.bz2 strongswan-0b71bc7af047f1a20bbad8a38d33b01452c35613.tar.xz |
Moved eap-tls plugin to libcharon, updated to 4.4.1 APIs
Diffstat (limited to 'src/libcharon/plugins/eap_tls/Makefile.am')
-rw-r--r-- | src/libcharon/plugins/eap_tls/Makefile.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libcharon/plugins/eap_tls/Makefile.am b/src/libcharon/plugins/eap_tls/Makefile.am new file mode 100644 index 000000000..bd8f82a62 --- /dev/null +++ b/src/libcharon/plugins/eap_tls/Makefile.am @@ -0,0 +1,25 @@ + +INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/libhydra \ + -I$(top_srcdir)/src/libcharon + +AM_CFLAGS = -rdynamic + +if MONOLITHIC +noinst_LTLIBRARIES = libstrongswan-eap-tls.la +else +plugin_LTLIBRARIES = libstrongswan-eap-tls.la +endif + +libstrongswan_eap_tls_la_SOURCES = eap_tls_plugin.h eap_tls_plugin.c \ + eap_tls.h eap_tls.c tls/tls.h tls/tls.c \ + tls/tls_protection.h tls/tls_protection.c \ + tls/tls_compression.h tls/tls_compression.c \ + tls/tls_fragmentation.h tls/tls_fragmentation.c \ + tls/tls_crypto.h tls/tls_crypto.c \ + tls/tls_prf.h tls/tls_prf.c \ + tls/tls_reader.h tls/tls_reader.c \ + tls/tls_writer.h tls/tls_writer.c \ + tls/tls_peer.h tls/tls_peer.c \ + tls/tls_server.h tls/tls_server.c \ + tls/tls_handshake.h +libstrongswan_eap_tls_la_LDFLAGS = -module -avoid-version |