# ^^^^^^^^ This has to be the first line and cannot come later in this
# Makefile.am due to some bork in some versions of autotools.
-SUBDIRS = compatcheck doc . ext src tests m4macros
+SUBDIRS = compatcheck tools doc . ext src tests m4macros
USE_LCOV=@USE_LCOV@
LCOV=@LCOV@
GENHTML=@GENHTML@
src/lib/util/threads/Makefile
src/lib/util/threads/tests/Makefile
src/lib/util/unittests/Makefile
+ tools/Makefile
tools/path_replacer.sh
tests/Makefile
tests/tools/Makefile
DISTCLEANFILES = $(HTMLDOCS) $(DOCS) kea-messages.xml
kea-messages.xml:
- $(PYTHON) $(top_srcdir)/tools/system_messages.py -o $@ \
+ $(top_srcdir)/tools/system_messages -o $@ \
`find $(top_srcdir) -name "*.mes" -print`
# This is not a "man" manual, but reuse this for now for docbook.
--- /dev/null
+AM_CPPFLAGS = $(BOOST_INCLUDES)
+
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
+
+if USE_STATIC_LINK
+AM_LDFLAGS = -static
+endif
+
+CLEANFILES = *.gcno *.gcda
+
+if GENERATE_DOCS
+
+noinst_PROGRAMS = system_messages
+system_messages_SOURCES = system_messages.cc
+
+endif
\ No newline at end of file