Makefile.am 1.6 KB

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