pandoc-templates/handin/makefile

11 lines
190 B
Makefile
Raw Normal View History

2016-11-10 14:13:26 +00:00
TEX = pandoc
src = template.tex handin.md
FLAGS = --latex-engine=xelatex
output.pdf : $(src)
$(TEX) $(filter-out $<,$^ ) -o $@ --template=$< $(FLAGS)
.PHONY: clean
clean :
rm output.pdf