Files
resume/makefile
Connor Johnstone b7a58e1da7 New style for pandoc
2020-01-03 14:40:19 -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