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.
20 lines
434 B
Makefile
20 lines
434 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/libstrongswan \
|
|
-I$(top_srcdir)/src/libhydra \
|
|
-DRESOLV_CONF=\"${resolv_conf}\"
|
|
|
|
AM_CFLAGS = \
|
|
-rdynamic
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-resolve.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-resolve.la
|
|
endif
|
|
|
|
libstrongswan_resolve_la_SOURCES = \
|
|
resolve_plugin.h resolve_plugin.c \
|
|
resolve_handler.h resolve_handler.c
|
|
|
|
libstrongswan_resolve_la_LDFLAGS = -module -avoid-version
|