瀏覽代碼

no shell escape needed

Martin Thoma 12 年之前
父節點
當前提交
01ec592193
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      documents/index/Makefile

+ 3 - 3
documents/index/Makefile

@@ -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: