summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manual/LaTeX.Rules3
1 files changed, 2 insertions, 1 deletions
diff --git a/manual/LaTeX.Rules b/manual/LaTeX.Rules
index 7a397f340d..fbcd4603bd 100644
--- a/manual/LaTeX.Rules
+++ b/manual/LaTeX.Rules
@@ -116,6 +116,7 @@ IDX_FILE := $(shell ls $(DOCUMENT).idx 2>/dev/null)
116END_FILE := $(shell ls $(DOCUMENT).end 2>/dev/null) 116END_FILE := $(shell ls $(DOCUMENT).end 2>/dev/null)
117TEX_FILES := $(DOCUMENT).tex 117TEX_FILES := $(DOCUMENT).tex
118OTHER_FILES := $(DOCUMENT).blg $(DOCUMENT).log $(DOCUMENT).out 118OTHER_FILES := $(DOCUMENT).blg $(DOCUMENT).log $(DOCUMENT).out
119INDEX_ARGS := -s mkidx.ist
119 120
120# grab the contents of \bibliograph{} commands 121# grab the contents of \bibliograph{} commands
121ifeq ($(BIB_FILES),) 122ifeq ($(BIB_FILES),)
@@ -255,7 +256,7 @@ $(PDF_FILE) : %.pdf : $(TEX_FILES) $(MONITOR_FILES) $(GRAPHIC_FILES) $(XFIG_TEX)
255# 256#
256 257
257%.ind : %.idx 258%.ind : %.idx
258 makeindex $< 259 makeindex $(INDEX_ARGS) $<
259 260
260# 261#
261# Generate a .aux or .idx file if it doesn't already exist. The existance 262# Generate a .aux or .idx file if it doesn't already exist. The existance