cv-boilerplate/makefile
2020-04-26 23:37:28 -07:00

11 lines
190 B
Makefile

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