Makefile.am 1.5 KB

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