cv-boilerplate/makefile

11 lines
194 B
Makefile
Raw Normal View History

2015-12-14 14:05:47 +00:00
TEX = pandoc
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)
2015-12-14 14:08:55 +00:00
$(TEX) $(filter-out $<,$^ ) -o $@ --template=$< $(LFLAGS)
2015-12-14 13:44:18 +00:00
.PHONY: clean
2015-10-21 13:21:43 +00:00
clean :
rm output.pdf