1234567891011121314151617 |
- all: readme.html index.html readme-plaiter.html docs.html install.html
- readme.html: ../README readme-header buttons
- cat readme-header ../README buttons | perl ~/bin/Markdown.pl > readme.html
- install.html: ../INSTALL install-header buttons
- cat install-header ../INSTALL buttons | perl ~/bin/Markdown.pl > install.html
- readme-plaiter.html: ../README.plaiter readme-plaiter-header buttons
- cat readme-plaiter-header ../README.plaiter buttons | \
- perl ~/bin/Markdown.pl > readme-plaiter.html
- docs.html: docs buttons
- cat docs buttons | perl ~/bin/Markdown.pl > docs.html
|