Makefile 320 B

123456789101112
  1. .PHONY: all clean
  2. all: ../tmp/CM3.html ../tmp/CM3_slides.html
  3. ../tmp/CM3.html: CM3.md
  4. pandoc --template ../www/template.html --toc --toc-depth 1 --include-before ../tmp/before.html -s -o $@ $<
  5. ../tmp/CM3_slides.html: CM3.md
  6. pandoc --template ../www/template_slidy.html --toc-depth 1 -t slidy -s -o $@ $<
  7. clean: