cv-boilerplate/makefile

10 lines
181 B
Makefile
Raw Normal View History

2015-12-14 13:44:18 +00:00
src = template.tex details.yml
LFLAGS = --latex-engine=xelatex
2015-10-21 13:21:43 +00:00
2015-12-14 13:44:18 +00:00
output.pdf : $(src)
pandoc $(filter-out $<,$^ ) -o $@ $(LFLAGS) --template=$<
.PHONY: clean
2015-10-21 13:21:43 +00:00
clean :
rm output.pdf