makefile 576 B

1234567891011121314151617
  1. all: readme.html index.html readme-plaiter.html docs.html install.html
  2. readme.html: ../README readme-header buttons
  3. cat readme-header ../README buttons | perl ~/bin/Markdown.pl > readme.html
  4. install.html: ../INSTALL install-header buttons
  5. cat install-header ../INSTALL buttons | perl ~/bin/Markdown.pl > install.html
  6. readme-plaiter.html: ../README.plaiter readme-plaiter-header buttons
  7. cat readme-plaiter-header ../README.plaiter buttons | \
  8. perl ~/bin/Markdown.pl > readme-plaiter.html
  9. docs.html: docs buttons
  10. cat docs buttons | perl ~/bin/Markdown.pl > docs.html