Makefile.am 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ## Process this file with automake to generate Makefile.in
  2. AUTOMAKE_OPTIONS = foreign nostdinc
  3. AM_CPPFLAGS = -I. -I$(top_srcdir)
  4. AM_LD = $(CXX)
  5. if DEBUG
  6. DEBUG_CFLAGS = -DDEBUG
  7. endif
  8. AM_CFLAGS = -ansi -pedantic -Werror -Wall -D_POSIX_C_SOURCE=199309 $(DEBUG_CFLAGS)
  9. bin_PROGRAMS =
  10. lib_LTLIBRARIES =
  11. lib_LIBRARIES =
  12. nobase_include_HEADERS =
  13. EXTRA_DIST = \
  14. bin/module.am \
  15. clish/module.am \
  16. lub/module.am \
  17. lubheap/module.am \
  18. tinyrl/module.am \
  19. tinyxml/module.am \
  20. test/module.am \
  21. xml-examples/module.am \
  22. cliconf/module.am \
  23. doxygen.config \
  24. clish.xsd \
  25. LICENCE \
  26. README \
  27. CHANGES \
  28. ISSUES
  29. include $(top_srcdir)/bin/module.am
  30. include $(top_srcdir)/clish/module.am
  31. include $(top_srcdir)/lub/module.am
  32. include $(top_srcdir)/lubheap/module.am
  33. include $(top_srcdir)/tinyrl/module.am
  34. include $(top_srcdir)/tinyxml/module.am
  35. include $(top_srcdir)/test/module.am
  36. include $(top_srcdir)/xml-examples/module.am
  37. include $(top_srcdir)/cliconf/module.am