sty:
	pdflatex groupthm.ins

all: clean pdf sty

pdf:
	pdflatex groupthm.dtx
	makeindex -s gind.ist groupthm.idx
	pdflatex groupthm.dtx
	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

.PHONY: pdf clean