2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/glossary/Makefile
2015-01-30 00:21:53 +01:00

11 lines
595 B
Makefile

DOKUMENT = document
make:
pdflatex -shell-escape $(DOKUMENT).tex -interaction=batchmode -output-format=pdf # aux-files for makeindex / makeglossaries
makeglossaries $(DOKUMENT)
pdflatex -shell-escape $(DOKUMENT).tex -interaction=batchmode -output-format=pdf # include index
pdflatex -shell-escape $(DOKUMENT).tex -interaction=batchmode -output-format=pdf # include symbol table
pdflatex -shell-escape $(DOKUMENT).tex -interaction=batchmode -output-format=pdf # include symbol table
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.blg *.bbl *.glg *.glo *.gls *.ist