diff options
author | Fred Drake <fdrake@acm.org> | 2000-10-05 05:16:56 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-10-05 05:16:56 (GMT) |
commit | 3705e59c04418bf88e4e81896bb2d84af9a7b480 (patch) | |
tree | deb4635af3cfc9c247badb2589dafa016cc2209c /Doc | |
parent | 702f2d763eb0f3f47980f0f6fa51c158003e36ef (diff) | |
download | cpython-3705e59c04418bf88e4e81896bb2d84af9a7b480.zip cpython-3705e59c04418bf88e4e81896bb2d84af9a7b480.tar.gz cpython-3705e59c04418bf88e4e81896bb2d84af9a7b480.tar.bz2 |
Add rules for generating the acks.html file at the top of the document tree.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/html/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Doc/html/Makefile b/Doc/html/Makefile index 205f55e..9f63e04 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -59,7 +59,12 @@ include ../Makefile.deps # The index.html target is at the end since it screws up font-lock. -modindex.html: lib/lib.html mac/mac.html $(TOOLSDIR)/mkmodindex +acks.html: ../ACKS $(TOOLSDIR)/support.py $(TOOLSDIR)/mkackshtml + $(TOOLSDIR)/mkackshtml --address $(PYTHONDOCS) --output acks.html \ + <../ACKS + +modindex.html: $(TOOLSDIR)/support.py $(TOOLSDIR)/mkmodindex +modindex.html: lib/lib.html mac/mac.html $(TOOLSDIR)/mkmodindex --columns 4 --output modindex.html \ --address $(PYTHONDOCS) \ lib/modindex.html mac/modindex.html @@ -107,7 +112,7 @@ clean: rm -rf @webchecker.pickle distclean realclean clobber: clean - rm -rf index.html modindex.html + rm -rf index.html modindex.html acks.html rm -rf api/ doc/ ext/ lib/ mac/ ref/ tut/ inst/ dist/ |