Makefile.am 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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/testc_helpers.h
  18. EXTRA_DIST += \
  19. faux/base/Makefile.am \
  20. faux/ctype/Makefile.am \
  21. faux/str/Makefile.am \
  22. faux/sysdb/Makefile.am \
  23. faux/conv/Makefile.am \
  24. faux/log/Makefile.am \
  25. faux/list/Makefile.am \
  26. faux/ini/Makefile.am \
  27. faux/file/Makefile.am \
  28. faux/testc_helpers/Makefile.am
  29. include $(top_srcdir)/faux/base/Makefile.am
  30. include $(top_srcdir)/faux/ctype/Makefile.am
  31. include $(top_srcdir)/faux/str/Makefile.am
  32. include $(top_srcdir)/faux/sysdb/Makefile.am
  33. include $(top_srcdir)/faux/conv/Makefile.am
  34. include $(top_srcdir)/faux/log/Makefile.am
  35. include $(top_srcdir)/faux/list/Makefile.am
  36. include $(top_srcdir)/faux/ini/Makefile.am
  37. include $(top_srcdir)/faux/file/Makefile.am
  38. include $(top_srcdir)/faux/testc_helpers/Makefile.am
  39. if TESTC
  40. include $(top_srcdir)/faux/testc_module/Makefile.am
  41. endif