Makefile.am 520 B

123456789101112131415161718192021222324
  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. if GENERATE_DOCS
  8. noinst_PROGRAMS = system_messages
  9. system_messages_SOURCES = system_messages.cc
  10. # For bare distcheck
  11. EXTRA_DIST = system_messages
  12. # Scripts for Cassandra support. Ultimately those scripts will have to be
  13. # incorporated in DataStax cpp-driver source tree, but until that happens,
  14. # let's keep them in Kea rpo
  15. EXTRA_DIST += cql_config cql_config_defines.sh
  16. endif