cv-boilerplate/makefile
2015-12-14 15:10:59 +01:00

11 lines
192 B
Makefile

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