modeles-et-procedures/Contrat types/Makefile

16 lines
346 B
Makefile
Raw Normal View History

2024-05-20 18:07:36 +02:00
.PHONY: all clean
all: convention.pdf
convention_partial.tex: convention.md
pandoc -t latex convention.md > convention_partial.tex
convention.tex: header.tex convention_partial.tex footer.tex
cat header.tex convention_partial.tex footer.tex > convention.tex
convention.pdf: convention.tex
xelatex convention.tex
clean:
rm -f convention*