module.am 615 B

1234567891011121314151617181920212223242526
  1. ## Process this file with automake to generate Makefile.in
  2. noinst_LIBRARIES = liblub.a
  3. liblub_a_SOURCES =
  4. noinst_HEADERS += \
  5. lub/list.h \
  6. lub/c_decl.h \
  7. lub/log.h \
  8. lub/ini.h \
  9. lub/string.h \
  10. lub/types.h \
  11. lub/ctype.h
  12. EXTRA_DIST += \
  13. lub/list/module.am \
  14. lub/log/module.am \
  15. lub/ini/module.am \
  16. lub/string/module.am \
  17. lub/ctype/module.am \
  18. lub/README
  19. include $(top_srcdir)/lub/list/module.am
  20. include $(top_srcdir)/lub/log/module.am
  21. include $(top_srcdir)/lub/ini/module.am
  22. include $(top_srcdir)/lub/string/module.am
  23. include $(top_srcdir)/lub/ctype/module.am