diff options
author | Georg Brandl <georg@python.org> | 2008-06-01 20:33:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-01 20:33:55 (GMT) |
commit | 681001e11ba164c67a42251bd2bcee2b260188c3 (patch) | |
tree | f15be52edbba69f75a919b6838980c002a640e0e /Doc/Makefile | |
parent | 0b9aaa98a0bdf90684aeaa13bb252f68da401e4c (diff) | |
download | cpython-681001e11ba164c67a42251bd2bcee2b260188c3.zip cpython-681001e11ba164c67a42251bd2bcee2b260188c3.tar.gz cpython-681001e11ba164c67a42251bd2bcee2b260188c3.tar.bz2 |
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 9795315..68da4f7 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -98,6 +98,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 |