16 lines
342 B
Makefile
16 lines
342 B
Makefile
.PHONY: all clean
|
|
|
|
all: convention.pdf
|
|
|
|
convention_partial.tex: articles.md
|
|
pandoc -t latex articles.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*
|