Skip to content

Commit

Permalink
Make the documents that have indexes dependent on the buildindex.py
Browse files Browse the repository at this point in the history
script.
  • Loading branch information
freddrake committed Jan 5, 1999
1 parent 7d45f6d commit 5d56d36
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Doc/html/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ WEBCHECKER= $(PYTHON) $(TOPDIR)/../Tools/webchecker/webchecker.py
MKHTML= PAPER=$(PAPER) $(TOOLSDIR)/mkhtml.sh
KPSEWHICH= TEXINPUTS=$(TEXINPUTS) kpsewhich tex

BUILDINDEX= $(TOOLSDIR)/buildindex.py

INDEXFILES=api/api.html \
ext/ext.html \
lib/lib.html \
Expand All @@ -43,21 +45,21 @@ tut: icons tut/tut.html

$(INDEXFILES): $(COMMONPERL) $(TOPDIR)/html/about.dat

api/api.html: $(PAPERDIR)/api.aux
api/api.html: $(PAPERDIR)/api.aux $(BUILDINDEX)
$(MKHTML) api $(L2HARGS)

ext/ext.html: $(PAPERDIR)/ext.aux
$(MKHTML) ext $(L2HARGS)

lib/lib.html: $(PAPERDIR)/lib.aux
lib/lib.html: $(PAPERDIR)/lib.aux $(BUILDINDEX)
$(TOOLSDIR)/fix_libaux.sed <`$(KPSEWHICH) lib.aux` >lib1.aux
mv lib1.aux `$(KPSEWHICH) lib.aux`
$(MKHTML) lib $(L2HARGS)

mac/mac.html: $(MACFILES)
mac/mac.html: $(MACFILES) $(BUILDINDEX)
$(TOOLSDIR)/mkhowto.sh --address '<hr>Send comments to <a href="mailto:[email protected]">[email protected]</a>.' --html $(TOPDIR)/mac/mac.tex

ref/ref.html: $(PAPERDIR)/ref.aux
ref/ref.html: $(PAPERDIR)/ref.aux $(BUILDINDEX)
$(MKHTML) ref $(L2HARGS)

tut/tut.html: $(PAPERDIR)/tut.aux
Expand Down

0 comments on commit 5d56d36

Please sign in to comment.