15 lines
237 B
Makefile
15 lines
237 B
Makefile
all: clean pdf
|
|
|
|
pdf:
|
|
pdflatex groupthm.dtx
|
|
makeindex -s gind.ist groupthm.idx
|
|
pdflatex groupthm.dtx
|
|
pdflatex groupthm.dtx
|
|
|
|
clean:
|
|
latexmk -c groupthm.dtx
|
|
rm -f groupthm.hd
|
|
rm -f groupthm.glo
|
|
rm -f groupthm.pdf
|
|
|
|
.PHONY: pdf clean
|