cv-boilerplate/makefile
2015-12-14 15:08:55 +01:00

11 lines
194 B
Makefile

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