module.am 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ## Process this file with automake to generate Makefile.in
  2. lib_LTLIBRARIES += liblub.la
  3. liblub_la_SOURCES =
  4. liblub_la_LIBADD = -lpthread
  5. nobase_include_HEADERS += \
  6. lub/argv.h \
  7. lub/bintree.h \
  8. lub/list.h \
  9. lub/blockpool.h \
  10. lub/ctype.h \
  11. lub/dblockpool.h \
  12. lub/c_decl.h \
  13. lub/dump.h \
  14. lub/heap.h \
  15. lub/partition.h \
  16. lub/string.h \
  17. lub/size_fmt.h \
  18. lub/test.h \
  19. lub/types.h \
  20. lub/system.h \
  21. lub/db.h
  22. EXTRA_DIST += \
  23. lub/argv/module.am \
  24. lub/bintree/module.am \
  25. lub/list/module.am \
  26. lub/blockpool/module.am \
  27. lub/ctype/module.am \
  28. lub/dblockpool/module.am \
  29. lub/dump/module.am \
  30. lub/heap/module.am \
  31. lub/string/module.am \
  32. lub/test/module.am \
  33. lub/system/module.am \
  34. lub/db/module.am \
  35. lub/README
  36. include $(top_srcdir)/lub/argv/module.am
  37. include $(top_srcdir)/lub/bintree/module.am
  38. include $(top_srcdir)/lub/list/module.am
  39. include $(top_srcdir)/lub/blockpool/module.am
  40. include $(top_srcdir)/lub/ctype/module.am
  41. include $(top_srcdir)/lub/dblockpool/module.am
  42. include $(top_srcdir)/lub/dump/module.am
  43. include $(top_srcdir)/lub/heap/module.am
  44. include $(top_srcdir)/lub/partition/module.am
  45. include $(top_srcdir)/lub/string/module.am
  46. include $(top_srcdir)/lub/test/module.am
  47. include $(top_srcdir)/lub/system/module.am
  48. include $(top_srcdir)/lub/db/module.am