16 lines
346 B
Makefile
16 lines
346 B
Makefile
|
.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*
|