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:
parent
f72ee8a986
commit
01ec592193
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue