proper makefile

This commit is contained in:
Maximilian Keßler 2022-01-30 13:43:53 +01:00
parent cd044ac0c4
commit fab158f45f

View File

@ -1,18 +1,14 @@
all: clean pdf
pdf:
pdflatex groupthm.dtx
makeindex -s gind.ist groupthm.idx
pdflatex groupthm.dtx
latexmk groupthm.dtx
clean: clean-sty
full:
latexmk -gg groupthm.dtx
clean:
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
clean-all:
latexmk -C groupthm.dtx
.PHONY: pdf clean
.PHONY: clean, clean-all