From 4e918ecac8419a796b42bf2b542d9d48e3344d1f Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 4 Sep 2004 13:13:48 +0000 Subject: Fix generation of subject index. (This used to be commit 695c819d5f05e97326d79baabd570b476f7f6349) --- docs/Makefile.in | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/Makefile.in b/docs/Makefile.in index a67a095bbd..71b88e01e2 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -158,11 +158,15 @@ $(PDFDIR)/%.pdf: %.pdf mkdir -p $(@D) cp $< $@ -# Adobe PDF files -%.pdf: %.tex latexfigures +%.idx: %.tex latexfigures -$(PDFLATEX) $< + +%.ind: %.idx + $(MAKEINDEX) $< + +# Adobe PDF files +%.pdf: %.tex %.ind latexfigures -$(PDFLATEX) $< - $(MAKEINDEX) $* $(THUMBPDF) $*.pdf -$(PDFLATEX) $< @@ -175,7 +179,7 @@ $(DVIDIR)/%.dvi: %.dvi $(MAKE) $(shell $(XSLTPROC) --stringparam prepend "" --stringparam append ".eps" --stringparam role latex xslt/find-image-dependencies.xsl $(DOCBOOKDIR)/$*.xml) -$(LATEX) $< -$(LATEX) $< - $(MAKEINDEX) $* + $(MAKEINDEX) $*.idx -$(LATEX) $< %.eps: %.png -- cgit