Makefile 357 B

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