Makefile.am 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. lib_LTLIBRARIES += libfaux.la
  2. libfaux_la_SOURCES =
  3. libfaux_la_LIBADD =
  4. nobase_include_HEADERS += \
  5. faux/faux.h \
  6. faux/ctype.h \
  7. faux/str.h \
  8. faux/sysdb.h \
  9. faux/conv.h \
  10. faux/log.h \
  11. faux/list.h \
  12. faux/ini.h \
  13. faux/file.h
  14. # faux/argv.h \
  15. # faux/dump.h \
  16. # faux/system.h
  17. EXTRA_DIST += \
  18. faux/base/Makefile.am \
  19. faux/ctype/Makefile.am \
  20. faux/str/Makefile.am \
  21. faux/sysdb/Makefile.am \
  22. faux/conv/Makefile.am \
  23. faux/log/Makefile.am \
  24. faux/list/Makefile.am \
  25. faux/ini/Makefile.am \
  26. faux/file/Makefile.am
  27. # faux/argv/Makefile.am \
  28. # faux/dump/Makefile.am \
  29. # faux/system/Makefile.am \
  30. # faux/README
  31. include $(top_srcdir)/faux/base/Makefile.am
  32. include $(top_srcdir)/faux/ctype/Makefile.am
  33. include $(top_srcdir)/faux/str/Makefile.am
  34. include $(top_srcdir)/faux/sysdb/Makefile.am
  35. include $(top_srcdir)/faux/conv/Makefile.am
  36. include $(top_srcdir)/faux/log/Makefile.am
  37. include $(top_srcdir)/faux/list/Makefile.am
  38. include $(top_srcdir)/faux/ini/Makefile.am
  39. include $(top_srcdir)/faux/file/Makefile.am
  40. if TESTC
  41. include $(top_srcdir)/faux/testc_module/Makefile.am
  42. endif