modeles-et-procedures/Contrat types/Makefile

16 lines
342 B
Makefile
Raw Normal View History

2024-05-20 18:07:36 +02:00
.PHONY: all clean
all: convention.pdf
2024-05-20 18:09:02 +02:00
convention_partial.tex: articles.md
pandoc -t latex articles.md > convention_partial.tex
2024-05-20 18:07:36 +02:00
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*