This commit is contained in:
Connor Johnstone
2020-02-10 10:21:15 -07:00
parent 2d65a10504
commit 61dec42d7d
7 changed files with 246 additions and 890 deletions

View File

@@ -1,10 +1,15 @@
TEX = pandoc
src = template.tex details.yml
src_contract = template_contract.tex details.yml
FLAGS = --pdf-engine=xelatex
output.pdf : $(src)
$(TEX) $(filter-out $<,$^ ) -o $@ --template=$< $(FLAGS)
.PHONY: contract
contract : $(src_contract)
$(TEX) $(filter-out $<,$^ ) -o output_contract.pdf --template=$< $(FLAGS)
.PHONY: clean
clean :
rm output.pdf
rm output.pdf output_contract.pdf