diff options
author | Georg Brandl <georg@python.org> | 2008-06-01 21:05:17 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-01 21:05:17 (GMT) |
commit | 6b38daa80dc0b63a089ac4557e25abe1f76b95af (patch) | |
tree | 0bb6028f26e25deab4772ff34a09dc9c35798ebd /Doc/Makefile | |
parent | 40ab2ec79604d204320df71a646e46a6221ff7e7 (diff) | |
download | cpython-6b38daa80dc0b63a089ac4557e25abe1f76b95af.zip cpython-6b38daa80dc0b63a089ac4557e25abe1f76b95af.tar.gz cpython-6b38daa80dc0b63a089ac4557e25abe1f76b95af.tar.bz2 |
Merged revisions 63871 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63871 | georg.brandl | 2008-06-01 22:33:55 +0200 (Sun, 01 Jun 2008) | 3 lines
Generate pydoc's topic help from the reST docs via Sphinx'
new text writer.
........
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 6274d4d..df55289 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -93,6 +93,11 @@ doctest: build @echo "Testing of doctests in the sources finished, look at the " \ "results in build/doctest/output.txt" +pydoc-topics: BUILDER = pydoc-topics +pydoc-topics: build + @echo "Building finished; now copy build/pydoc-topics/pydoc_topics.py " \ + "into the Lib/ directory" + clean: -rm -rf build/* -rm -rf tools/sphinx |