diff options
author | Fred Drake <fdrake@acm.org> | 1999-03-18 19:07:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-03-18 19:07:04 (GMT) |
commit | 1468d77ff80e1379a84660edbc1d740ff8353e2a (patch) | |
tree | d1fe78cc3827e1618a10f210e8db93dd3e93169d /Doc/html | |
parent | 03dffcce0efb65d2e31ee75b2d1a16b6b29f51a4 (diff) | |
download | cpython-1468d77ff80e1379a84660edbc1d740ff8353e2a.zip cpython-1468d77ff80e1379a84660edbc1d740ff8353e2a.tar.gz cpython-1468d77ff80e1379a84660edbc1d740ff8353e2a.tar.bz2 |
Add "Documenting Python" to the list of processed documents.
Diffstat (limited to 'Doc/html')
-rw-r--r-- | Doc/html/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/html/Makefile b/Doc/html/Makefile index e6bf339..4ff1dd3 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -28,6 +28,7 @@ PYTHONDOCS='<hr>Send comments to <a href="mailto:python-docs@python.org">python- HTMLBASE= file:`pwd` INDEXFILES=api/api.html \ + doc/doc.html \ ext/ext.html \ lib/lib.html \ mac/mac.html \ @@ -60,6 +61,10 @@ modindex.html: lib/lib.html mac/mac.html $(TOOLSDIR)/mkmodindex api/api.html: $(PAPERDIR)/api.aux $(BUILDINDEX) $(MKHTML) api $(L2HARGS) +doc/doc.html: $(DOCFILES) $(BUILDINDEX) $(TOPDIR)/perl/ltxmarkup.perl + $(TOOLSDIR)/mkhowto --address $(PYTHONDOCS) --html \ + $(TOPDIR)/doc/doc.tex + ext/ext.html: $(PAPERDIR)/ext.aux $(MKHTML) ext $(L2HARGS) @@ -99,6 +104,7 @@ $(PAPERDIR)/tut.aux: $(TUTFILES) webcheck: all $(WEBCHECKER) $(HTMLBASE)/api/ + $(WEBCHECKER) $(HTMLBASE)/doc/ $(WEBCHECKER) $(HTMLBASE)/ext/ $(WEBCHECKER) -m290000 $(HTMLBASE)/lib/ $(WEBCHECKER) $(HTMLBASE)/mac/ @@ -109,4 +115,4 @@ clean: rm -rf @webchecker.pickle clobber: clean - rm -rf api/ ext/ lib/ mac/ ref/ tut/ + rm -rf api/ doc/ ext/ lib/ mac/ ref/ tut/ |