Makefile.am 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/base/Makefile.am \
  38. faux/ctype/Makefile.am \
  39. faux/str/Makefile.am \
  40. faux/sysdb/Makefile.am \
  41. faux/conv/Makefile.am \
  42. faux/log/Makefile.am \
  43. faux/list/Makefile.am \
  44. faux/vec/Makefile.am \
  45. faux/ini/Makefile.am \
  46. faux/file/Makefile.am \
  47. faux/argv/Makefile.am \
  48. faux/time/Makefile.am \
  49. faux/sched/Makefile.am \
  50. faux/net/Makefile.am \
  51. faux/msg/Makefile.am \
  52. faux/eloop/Makefile.am \
  53. faux/async/Makefile.am \
  54. faux/error/Makefile.am \
  55. faux/testc_helpers/Makefile.am
  56. faux/buf/Makefile.am
  57. include $(top_srcdir)/faux/base/Makefile.am
  58. include $(top_srcdir)/faux/ctype/Makefile.am
  59. include $(top_srcdir)/faux/str/Makefile.am
  60. include $(top_srcdir)/faux/sysdb/Makefile.am
  61. include $(top_srcdir)/faux/conv/Makefile.am
  62. include $(top_srcdir)/faux/log/Makefile.am
  63. include $(top_srcdir)/faux/list/Makefile.am
  64. include $(top_srcdir)/faux/vec/Makefile.am
  65. include $(top_srcdir)/faux/ini/Makefile.am
  66. include $(top_srcdir)/faux/file/Makefile.am
  67. include $(top_srcdir)/faux/argv/Makefile.am
  68. include $(top_srcdir)/faux/time/Makefile.am
  69. include $(top_srcdir)/faux/sched/Makefile.am
  70. include $(top_srcdir)/faux/net/Makefile.am
  71. include $(top_srcdir)/faux/msg/Makefile.am
  72. include $(top_srcdir)/faux/eloop/Makefile.am
  73. include $(top_srcdir)/faux/async/Makefile.am
  74. include $(top_srcdir)/faux/error/Makefile.am
  75. include $(top_srcdir)/faux/testc_helpers/Makefile.am
  76. include $(top_srcdir)/faux/buf/Makefile.am
  77. if TESTC
  78. include $(top_srcdir)/faux/testc_module/Makefile.am
  79. endif