diff --git a/Makefile b/Makefile index 4f70674..4c84621 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,9 @@ all: $(TARGETS) out/%.pdf: %.md pandoc --from $(FROM_FORMAT) --pdf-engine=xelatex -o $@ $< +out/%.tex: %.md + pandoc --from $(FROM_FORMAT) --pdf-engine=xelatex -o $@ $< + clean: rm -f $(TARGETS) .PHONY: clean