matkant_invoice/pandoc/makefile

11 lines
192 B
Makefile
Raw Permalink Normal View History

2017-01-30 13:06:38 +00:00
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