mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
12 lines
595 B
Makefile
12 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
|