Makefile.am 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 = -pedantic -Wall $(DEBUG_CFLAGS)
  9. AM_CXXFLAGS = -Wall $(DEBUG_CFLAGS)
  10. #AM_CFLAGS = -ansi -pedantic -Werror -Wall -D_POSIX_C_SOURCE=199309 -DVERSION=$(VERSION) $(DEBUG_CFLAGS)
  11. bin_PROGRAMS =
  12. lib_LTLIBRARIES =
  13. lib_LIBRARIES =
  14. nobase_include_HEADERS =
  15. EXTRA_DIST = \
  16. bin/module.am \
  17. clish/module.am \
  18. lub/module.am \
  19. lubheap/module.am \
  20. tinyrl/module.am \
  21. tinyxml/module.am \
  22. test/module.am \
  23. xml-examples/module.am \
  24. konf/module.am \
  25. doxygen.config \
  26. clish.xsd \
  27. LICENCE \
  28. README \
  29. CHANGES \
  30. ISSUES
  31. include $(top_srcdir)/bin/module.am
  32. include $(top_srcdir)/clish/module.am
  33. include $(top_srcdir)/lub/module.am
  34. include $(top_srcdir)/lubheap/module.am
  35. include $(top_srcdir)/tinyrl/module.am
  36. include $(top_srcdir)/tinyxml/module.am
  37. include $(top_srcdir)/test/module.am
  38. include $(top_srcdir)/xml-examples/module.am
  39. include $(top_srcdir)/konf/module.am