Makefile.am 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 HAVE_LD_VERSION_SCRIPT
  7. libfaux_la_LDFLAGS += -Wl,--version-script=faux/faux.map
  8. endif
  9. if DEBUG
  10. libfaux_la_CFLAGS += -DDEBUG
  11. endif
  12. if TESTC
  13. libfaux_la_CFLAGS += -DTESTC
  14. endif
  15. nobase_include_HEADERS += \
  16. faux/faux.h \
  17. faux/ctype.h \
  18. faux/str.h \
  19. faux/sysdb.h \
  20. faux/conv.h \
  21. faux/log.h \
  22. faux/list.h \
  23. faux/vec.h \
  24. faux/ini.h \
  25. faux/file.h \
  26. faux/argv.h \
  27. faux/time.h \
  28. faux/sched.h \
  29. faux/net.h \
  30. faux/msg.h \
  31. faux/eloop.h \
  32. faux/async.h \
  33. faux/error.h \
  34. faux/testc_helpers.h \
  35. faux/buf.h
  36. EXTRA_DIST += \
  37. faux/faux.map \
  38. faux/base/Makefile.am \
  39. faux/ctype/Makefile.am \
  40. faux/str/Makefile.am \
  41. faux/sysdb/Makefile.am \
  42. faux/conv/Makefile.am \
  43. faux/log/Makefile.am \
  44. faux/list/Makefile.am \
  45. faux/vec/Makefile.am \
  46. faux/ini/Makefile.am \
  47. faux/file/Makefile.am \
  48. faux/argv/Makefile.am \
  49. faux/time/Makefile.am \
  50. faux/sched/Makefile.am \
  51. faux/net/Makefile.am \
  52. faux/msg/Makefile.am \
  53. faux/eloop/Makefile.am \
  54. faux/async/Makefile.am \
  55. faux/error/Makefile.am \
  56. faux/testc_helpers/Makefile.am
  57. faux/buf/Makefile.am
  58. include $(top_srcdir)/faux/base/Makefile.am
  59. include $(top_srcdir)/faux/ctype/Makefile.am
  60. include $(top_srcdir)/faux/str/Makefile.am
  61. include $(top_srcdir)/faux/sysdb/Makefile.am
  62. include $(top_srcdir)/faux/conv/Makefile.am
  63. include $(top_srcdir)/faux/log/Makefile.am
  64. include $(top_srcdir)/faux/list/Makefile.am
  65. include $(top_srcdir)/faux/vec/Makefile.am
  66. include $(top_srcdir)/faux/ini/Makefile.am
  67. include $(top_srcdir)/faux/file/Makefile.am
  68. include $(top_srcdir)/faux/argv/Makefile.am
  69. include $(top_srcdir)/faux/time/Makefile.am
  70. include $(top_srcdir)/faux/sched/Makefile.am
  71. include $(top_srcdir)/faux/net/Makefile.am
  72. include $(top_srcdir)/faux/msg/Makefile.am
  73. include $(top_srcdir)/faux/eloop/Makefile.am
  74. include $(top_srcdir)/faux/async/Makefile.am
  75. include $(top_srcdir)/faux/error/Makefile.am
  76. include $(top_srcdir)/faux/testc_helpers/Makefile.am
  77. include $(top_srcdir)/faux/buf/Makefile.am
  78. if TESTC
  79. include $(top_srcdir)/faux/testc_module/Makefile.am
  80. endif