diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-24 17:34:12 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-24 17:34:12 (GMT) |
commit | 684f78fafe30cd2f1dd6c9e9853d0a02943015d2 (patch) | |
tree | 035af25b98a86fda6f1213f90bc0331709a3ddc6 /Doc/html | |
parent | 2ef38a7a42d9d02b0bd95b65d2d187ce34877f8a (diff) | |
download | cpython-684f78fafe30cd2f1dd6c9e9853d0a02943015d2.zip cpython-684f78fafe30cd2f1dd6c9e9853d0a02943015d2.tar.gz cpython-684f78fafe30cd2f1dd6c9e9853d0a02943015d2.tar.bz2 |
Add target for modindex.html; a combined lib+mac module index. Also
built with target "all".
Diffstat (limited to 'Doc/html')
-rw-r--r-- | Doc/html/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/html/Makefile b/Doc/html/Makefile index e8cf017..1119576 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -38,7 +38,7 @@ COMMONPERL= $(TOPDIR)/perl/manual.perl \ $(TOPDIR)/perl/l2hinit.perl -all: $(INDEXFILES) +all: $(INDEXFILES) modindex.html .PHONY: api ext lib mac ref tut @@ -51,6 +51,10 @@ tut: tut/tut.html $(INDEXFILES): $(COMMONPERL) $(TOPDIR)/html/about.dat +modindex.html: lib/lib.html mac/mac.html $(TOOLSDIR)/mkmodindex + $(TOOLSDIR)/mkmodindex --columns 5 --output modindex.html \ + lib/modindex.html mac/modindex.html + api/api.html: $(PAPERDIR)/api.aux $(BUILDINDEX) $(MKHTML) api $(L2HARGS) |