Makefile 417 B

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