cv-boilerplate/makefile
2018-06-04 17:37:40 +02: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