diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-10-22 22:34:49 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-10-22 22:34:49 +0000 |
| commit | 877cafa33dd3e02fd02ab04a21214d524b5cbd18 (patch) | |
| tree | cc78d96b72abc024e2edfb838340a4cb78a7f2e5 | |
| parent | f1a848dae2f18577712d7823dd56440d64300561 (diff) | |
| download | rockbox-877cafa33dd3e02fd02ab04a21214d524b5cbd18.zip rockbox-877cafa33dd3e02fd02ab04a21214d524b5cbd18.tar.gz rockbox-877cafa33dd3e02fd02ab04a21214d524b5cbd18.tar.bz2 rockbox-877cafa33dd3e02fd02ab04a21214d524b5cbd18.tar.xz | |
add the correct input file to makeindex call
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11313 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | manual/LaTeX.Rules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manual/LaTeX.Rules b/manual/LaTeX.Rules index 7a397f3..fbcd460 100644 --- a/manual/LaTeX.Rules +++ b/manual/LaTeX.Rules @@ -116,6 +116,7 @@ IDX_FILE := $(shell ls $(DOCUMENT).idx 2>/dev/null) END_FILE := $(shell ls $(DOCUMENT).end 2>/dev/null) TEX_FILES := $(DOCUMENT).tex OTHER_FILES := $(DOCUMENT).blg $(DOCUMENT).log $(DOCUMENT).out +INDEX_ARGS := -s mkidx.ist # grab the contents of \bibliograph{} commands ifeq ($(BIB_FILES),) @@ -255,7 +256,7 @@ $(PDF_FILE) : %.pdf : $(TEX_FILES) $(MONITOR_FILES) $(GRAPHIC_FILES) $(XFIG_TEX) # %.ind : %.idx - makeindex $< + makeindex $(INDEX_ARGS) $< # # Generate a .aux or .idx file if it doesn't already exist. The existance |