Makefile 394 B

1234567891011121314
  1. .PHONY: all clean
  2. all: ../tmp/installation.html ../tmp/installation_slides.html
  3. cp *.png ../tmp
  4. ../tmp/installation.html: installation.md
  5. pandoc --template ../www/template.html --toc --toc-depth 1 --include-before ../tmp/before.html -s -o $@ $<
  6. ../tmp/installation_slides.html: installation.md
  7. pandoc --template ../www/template_slidy.html --toc-depth 1 -t slidy -s -o $@ $<
  8. clean: