2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00

no shell escape needed

This commit is contained in:
Martin Thoma 2012-09-28 13:45:06 +02:00
parent f72ee8a986
commit 01ec592193

View file

@ -1,9 +1,9 @@
SOURCE = index
make:
pdflatex -shell-escape $(SOURCE).tex -output-format=pdf
makeindex $(SOURCE)
pdflatex -shell-escape $(SOURCE).tex -output-format=pdf
pdflatex $(SOURCE).tex -output-format=pdf # first run for the aux file
makeindex $(SOURCE) # now the index is generated
pdflatex $(SOURCE).tex -output-format=pdf # pdf with index :-)
make clean
clean: