module.am 567 B

123456789101112131415161718192021222324
  1. ## Process this file with automake to generate Makefile.in
  2. noinst_LTLIBRARIES += liblub.la
  3. liblub_la_SOURCES =
  4. liblub_la_LIBADD =
  5. nobase_include_HEADERS += \
  6. lub/list.h \
  7. lub/c_decl.h \
  8. lub/string.h \
  9. lub/types.h \
  10. lub/ctype.h \
  11. lub/log.h
  12. EXTRA_DIST += \
  13. lub/list/module.am \
  14. lub/string/module.am \
  15. lub/log/module.am \
  16. lub/ctype/module.am \
  17. lub/README
  18. include $(top_srcdir)/lub/list/module.am
  19. include $(top_srcdir)/lub/string/module.am
  20. include $(top_srcdir)/lub/log/module.am
  21. include $(top_srcdir)/lub/ctype/module.am