Makefile 463 B

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