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.
19 lines
412 B
Makefile
19 lines
412 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/libstrongswan \
|
|
-I$(top_srcdir)/src/libhydra \
|
|
-I$(top_srcdir)/src/libcharon
|
|
|
|
AM_CFLAGS = \
|
|
-rdynamic
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-eap-md5.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-eap-md5.la
|
|
endif
|
|
|
|
libstrongswan_eap_md5_la_SOURCES = \
|
|
eap_md5_plugin.h eap_md5_plugin.c eap_md5.h eap_md5.c
|
|
|
|
libstrongswan_eap_md5_la_LDFLAGS = -module -avoid-version
|