Makefile 468 B

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