Makefile.am 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ## Process this file with automake to generate Makefile.in
  2. AUTOMAKE_OPTIONS = foreign nostdinc
  3. ACLOCAL_AMFLAGS = -I m4
  4. AM_CPPFLAGS = -I. -I$(top_srcdir)
  5. AM_LD = $(CC)
  6. VERSION_INFO = -version-info $(SONAME_CURRENT):$(SONAME_REVISION):$(SONAME_AGE)
  7. if DEBUG
  8. DEBUG_CFLAGS = -DDEBUG
  9. endif
  10. if TESTC
  11. TESTC_CFLAGS = -DTESTC
  12. endif
  13. AM_CFLAGS = -Wall $(DEBUG_CFLAGS) $(TESTC_CFLAGS)
  14. bin_PROGRAMS =
  15. lib_LTLIBRARIES =
  16. lib_LIBRARIES =
  17. nobase_include_HEADERS =
  18. EXTRA_DIST =
  19. klish/Makefile.am \
  20. bin/Makefile.am
  21. # bin/module.am \
  22. # clish/module.am \
  23. # tinyrl/module.am \
  24. # konf/module.am \
  25. # plugins/module.am \
  26. # libc/module.am \
  27. # doc/module.am \
  28. # contrib \
  29. # xml-examples \
  30. # debian \
  31. # clish.xsd \
  32. # LICENCE \
  33. # README \
  34. # CHANGES \
  35. # ISSUES
  36. include $(top_srcdir)/klish/Makefile.am
  37. include $(top_srcdir)/bin/Makefile.am
  38. #include $(top_srcdir)/tinyrl/module.am
  39. #include $(top_srcdir)/konf/module.am
  40. #include $(top_srcdir)/clish/module.am
  41. #include $(top_srcdir)/bin/module.am
  42. #include $(top_srcdir)/plugins/module.am
  43. #include $(top_srcdir)/libc/module.am
  44. #include $(top_srcdir)/doc/module.am