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.
23 lines
527 B
Makefile
23 lines
527 B
Makefile
ipsec_PROGRAMS = charon
|
|
|
|
charon_SOURCES = \
|
|
charon.c
|
|
|
|
charon.o : $(top_builddir)/config.status
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/libstrongswan \
|
|
-I$(top_srcdir)/src/libhydra \
|
|
-I$(top_srcdir)/src/libcharon \
|
|
-DIPSEC_DIR=\"${ipsecdir}\" \
|
|
-DIPSEC_PIDDIR=\"${piddir}\" \
|
|
-DPLUGINS=\""${charon_plugins}\""
|
|
|
|
charon_LDADD = \
|
|
$(top_builddir)/src/libstrongswan/libstrongswan.la \
|
|
$(top_builddir)/src/libhydra/libhydra.la \
|
|
$(top_builddir)/src/libcharon/libcharon.la \
|
|
-lm $(PTHREADLIB) $(DLLIB)
|
|
|
|
EXTRA_DIST = Android.mk
|