Makefile.am 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. lib_LTLIBRARIES += libfaux.la
  2. libfaux_la_SOURCES =
  3. libfaux_la_LIBADD =
  4. if TESTC
  5. libfaux_la_CFLAGS = -DTESTC
  6. endif
  7. nobase_include_HEADERS += \
  8. faux/faux.h \
  9. faux/ctype.h \
  10. faux/str.h \
  11. faux/sysdb.h \
  12. faux/conv.h \
  13. faux/log.h \
  14. faux/list.h \
  15. faux/ini.h \
  16. faux/file.h \
  17. faux/argv.h \
  18. faux/time.h \
  19. faux/sched.h \
  20. faux/testc_helpers.h
  21. EXTRA_DIST += \
  22. faux/base/Makefile.am \
  23. faux/ctype/Makefile.am \
  24. faux/str/Makefile.am \
  25. faux/sysdb/Makefile.am \
  26. faux/conv/Makefile.am \
  27. faux/log/Makefile.am \
  28. faux/list/Makefile.am \
  29. faux/ini/Makefile.am \
  30. faux/file/Makefile.am \
  31. faux/argv/Makefile.am \
  32. faux/time/Makefile.am \
  33. faux/sched/Makefile.am \
  34. faux/testc_helpers/Makefile.am
  35. include $(top_srcdir)/faux/base/Makefile.am
  36. include $(top_srcdir)/faux/ctype/Makefile.am
  37. include $(top_srcdir)/faux/str/Makefile.am
  38. include $(top_srcdir)/faux/sysdb/Makefile.am
  39. include $(top_srcdir)/faux/conv/Makefile.am
  40. include $(top_srcdir)/faux/log/Makefile.am
  41. include $(top_srcdir)/faux/list/Makefile.am
  42. include $(top_srcdir)/faux/ini/Makefile.am
  43. include $(top_srcdir)/faux/file/Makefile.am
  44. include $(top_srcdir)/faux/argv/Makefile.am
  45. include $(top_srcdir)/faux/time/Makefile.am
  46. include $(top_srcdir)/faux/sched/Makefile.am
  47. include $(top_srcdir)/faux/testc_helpers/Makefile.am
  48. if TESTC
  49. include $(top_srcdir)/faux/testc_module/Makefile.am
  50. endif