pandoc-templates/handin/makefile
Christoffer Müller Madsen ea19bcada0 add handin
2016-11-10 15:13:26 +01:00

11 lines
190 B
Makefile

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