diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-09-04 13:13:48 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:00 -0500 |
commit | 4e918ecac8419a796b42bf2b542d9d48e3344d1f (patch) | |
tree | 65c102df9602701783a3e1beb1678f9fa804ec71 /docs/Makefile.in | |
parent | 4128635e51d571ab69c1dbcded5dfbd79948a6e5 (diff) | |
download | samba-4e918ecac8419a796b42bf2b542d9d48e3344d1f.tar.gz samba-4e918ecac8419a796b42bf2b542d9d48e3344d1f.tar.bz2 samba-4e918ecac8419a796b42bf2b542d9d48e3344d1f.zip |
Fix generation of subject index.
(This used to be commit 695c819d5f05e97326d79baabd570b476f7f6349)
Diffstat (limited to 'docs/Makefile.in')
-rw-r--r-- | docs/Makefile.in | 12 |
1 files 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 |