Makefile.am 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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/msg.h \
  25. faux/eloop.h \
  26. faux/testc_helpers.h
  27. EXTRA_DIST += \
  28. faux/base/Makefile.am \
  29. faux/ctype/Makefile.am \
  30. faux/str/Makefile.am \
  31. faux/sysdb/Makefile.am \
  32. faux/conv/Makefile.am \
  33. faux/log/Makefile.am \
  34. faux/list/Makefile.am \
  35. faux/vec/Makefile.am \
  36. faux/ini/Makefile.am \
  37. faux/file/Makefile.am \
  38. faux/argv/Makefile.am \
  39. faux/time/Makefile.am \
  40. faux/sched/Makefile.am \
  41. faux/net/Makefile.am \
  42. faux/msg/Makefile.am \
  43. faux/eloop/Makefile.am \
  44. faux/testc_helpers/Makefile.am
  45. include $(top_srcdir)/faux/base/Makefile.am
  46. include $(top_srcdir)/faux/ctype/Makefile.am
  47. include $(top_srcdir)/faux/str/Makefile.am
  48. include $(top_srcdir)/faux/sysdb/Makefile.am
  49. include $(top_srcdir)/faux/conv/Makefile.am
  50. include $(top_srcdir)/faux/log/Makefile.am
  51. include $(top_srcdir)/faux/list/Makefile.am
  52. include $(top_srcdir)/faux/vec/Makefile.am
  53. include $(top_srcdir)/faux/ini/Makefile.am
  54. include $(top_srcdir)/faux/file/Makefile.am
  55. include $(top_srcdir)/faux/argv/Makefile.am
  56. include $(top_srcdir)/faux/time/Makefile.am
  57. include $(top_srcdir)/faux/sched/Makefile.am
  58. include $(top_srcdir)/faux/net/Makefile.am
  59. include $(top_srcdir)/faux/msg/Makefile.am
  60. include $(top_srcdir)/faux/eloop/Makefile.am
  61. include $(top_srcdir)/faux/testc_helpers/Makefile.am
  62. if TESTC
  63. include $(top_srcdir)/faux/testc_module/Makefile.am
  64. endif