diff --git a/dev/Makefile b/dev/Makefile index 00671543..6abd54a7 100644 --- a/dev/Makefile +++ b/dev/Makefile @@ -1,7 +1,9 @@ pdf/%.pdf: %.md + @mkdir -p $(@D) pandoc --toc --template template/default.latex -o $@ $< html/%.html: %.md + @mkdir -p $(@D) pandoc --toc -o $@ -s $< --mathjax all: pdf html