21 lines
319 B
Makefile
21 lines
319 B
Makefile
sty: clean-sty
|
|
pdflatex groupthm.ins
|
|
|
|
all: clean pdf sty
|
|
|
|
pdf:
|
|
pdflatex groupthm.dtx
|
|
makeindex -s gind.ist groupthm.idx
|
|
pdflatex groupthm.dtx
|
|
|
|
clean: clean-sty
|
|
latexmk -c groupthm.dtx
|
|
rm -f groupthm.hd
|
|
rm -f groupthm.glo
|
|
rm -f groupthm.pdf
|
|
|
|
clean-sty:
|
|
rm -f groupthm.sty
|
|
rm -f groupthm.tdo
|
|
|
|
.PHONY: pdf clean
|