Makefile 487 B

1234567891011121314151617
  1. .PHONY: all clean
  2. all: ../tmp/before.html ../tmp/index.html ../tmp/index_slides.html
  3. ../tmp/before.html: before.md
  4. mkdir -p ../tmp
  5. pandoc -o $@ $<
  6. cp template.css slidy.css slidy.js ../tmp
  7. ../tmp/index.html: index.md
  8. pandoc --template template.html --css template.css --toc --toc-depth 1 --include-before ../tmp/before.html -s -o $@ $<
  9. ../tmp/index_slides.html: index.md
  10. pandoc --css slidy.css --template template_slidy.html --toc --toc-depth 1 -t slidy -s -o $@ $<
  11. clean: