module.am 543 B

12345678910111213141516171819
  1. ## Process this file with automake to generate Makefile.in
  2. lib_LTLIBRARIES += libtinyrl.la
  3. libtinyrl_la_SOURCES = \
  4. tinyrl/tinyrl.c \
  5. tinyrl/private.h
  6. nobase_include_HEADERS += \
  7. tinyrl/tinyrl.h \
  8. tinyrl/history.h \
  9. tinyrl/vt100.h
  10. EXTRA_DIST += \
  11. tinyrl/history/module.am \
  12. tinyrl/vt100/module.am \
  13. tinyrl/README
  14. include $(top_srcdir)/tinyrl/history/module.am
  15. include $(top_srcdir)/tinyrl/vt100/module.am