INCLUDES are now deprecated and throw warnings when using automake 1.13. We now also differentiate AM_CPPFLAGS and AM_CFLAGS, where includes and defines are passed to AM_CPPFLAGS only.
21 lines
513 B
Makefile
21 lines
513 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/libstrongswan \
|
|
-I$(top_srcdir)/src/libhydra \
|
|
-I$(top_srcdir)/src/libcharon \
|
|
-I$(top_srcdir)/src/libtls
|
|
|
|
AM_CFLAGS = \
|
|
-rdynamic
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-eap-tls.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-eap-tls.la
|
|
libstrongswan_eap_tls_la_LIBADD = $(top_builddir)/src/libtls/libtls.la
|
|
endif
|
|
|
|
libstrongswan_eap_tls_la_SOURCES = \
|
|
eap_tls_plugin.h eap_tls_plugin.c eap_tls.h eap_tls.c
|
|
|
|
libstrongswan_eap_tls_la_LDFLAGS = -module -avoid-version
|