makefile love
This commit is contained in:
parent
f90c3448e4
commit
24f6a352e1
8
makefile
8
makefile
@ -1,5 +1,9 @@
|
|||||||
output.pdf : template.tex details.yml
|
src = template.tex details.yml
|
||||||
pandoc $(filter-out $<,$^ ) -o $@ --latex-engine=xelatex --template=$<
|
LFLAGS = --latex-engine=xelatex
|
||||||
|
|
||||||
|
output.pdf : $(src)
|
||||||
|
pandoc $(filter-out $<,$^ ) -o $@ $(LFLAGS) --template=$<
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
clean :
|
clean :
|
||||||
rm output.pdf
|
rm output.pdf
|
||||||
|
Loading…
Reference in New Issue
Block a user