cv-boilerplate/makefile
2015-12-14 14:44:18 +01:00

10 lines
181 B
Makefile

src = template.tex details.yml
LFLAGS = --latex-engine=xelatex
output.pdf : $(src)
pandoc $(filter-out $<,$^ ) -o $@ $(LFLAGS) --template=$<
.PHONY: clean
clean :
rm output.pdf