Updates
This commit is contained in:
7
makefile
7
makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user