Makefile.am 554 B

12345678910111213141516171819202122232425
  1. AM_CPPFLAGS = $(BOOST_INCLUDES)
  2. AM_CXXFLAGS = $(KEA_CXXFLAGS)
  3. if USE_STATIC_LINK
  4. AM_LDFLAGS = -static
  5. endif
  6. CLEANFILES = *.gcno *.gcda
  7. DISTCLEANFILES = path_replacer.sh
  8. if GENERATE_DOCS
  9. noinst_PROGRAMS = system_messages
  10. system_messages_SOURCES = system_messages.cc
  11. # For bare distcheck
  12. EXTRA_DIST = system_messages
  13. # Scripts for Cassandra support. Ultimately those scripts will have to be
  14. # incorporated in DataStax cpp-driver source tree, but until that happens,
  15. # let's keep them in Kea rpo
  16. EXTRA_DIST += cql_config cql_config_defines.sh
  17. endif