[Python-checkins] cpython (3.4): Issue #17386: Update Doc/README.txt to list all targets

zach.ware python-checkins at python.org
Tue Apr 29 16:47:57 CEST 2014


http://hg.python.org/cpython/rev/c378c67c4170
changeset:   90514:c378c67c4170
branch:      3.4
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Tue Apr 29 09:26:56 2014 -0500
summary:
  Issue #17386: Update Doc/README.txt to list all targets
supported by Doc/Makefile, as well as a bit of modernization,
cleanup, and notes about the difference between Unix and Windows.

files:
  Doc/README.txt |  29 +++++++++++++++++++++++------
  1 files changed, 23 insertions(+), 6 deletions(-)


diff --git a/Doc/README.txt b/Doc/README.txt
--- a/Doc/README.txt
+++ b/Doc/README.txt
@@ -5,7 +5,7 @@
 documentation.  You don't need to build them yourself, prebuilt versions are
 available at <https://docs.python.org/3.4/download.html>.
 
-Documentation on the authoring Python documentation, including information about
+Documentation on authoring Python documentation, including information about
 both style and markup, is available in the "Documenting Python" chapter of the
 developers guide <http://docs.python.org/devguide/documenting.html>.
 
@@ -26,8 +26,7 @@
 
    make html
 
-to build the HTML output files.  To view the generated HTML, point your favorite
-browser at the top-level index `build/html/index.html` after running "make".
+to build the HTML output files.
 
 On Windows, we try to emulate the Makefile as closely as possible with a
 ``make.bat`` file.
@@ -35,18 +34,29 @@
 To use a Python interpreter that's not called ``python``, use the standard
 way to set Makefile variables, using e.g. ::
 
-   make html PYTHON=/usr/bin/python2.5
+   make html PYTHON=python3
+
+On Windows, set the PYTHON environment variable instead.
+
+To use a specific sphinx-build (something other than ``sphinx-build``), set
+the SPHINXBUILD variable.
 
 Available make targets are:
 
+ * "clean", which removes all build files.
+
  * "html", which builds standalone HTML files for offline viewing.
 
+ * "htmlview", which re-uses the "html" builder, but then opens the main page
+   in your default web browser.
+
  * "htmlhelp", which builds HTML files and a HTML Help project file usable to
    convert them into a single Compiled HTML (.chm) file -- these are popular
    under Microsoft Windows, but very handy on every platform.
 
-   To create the CHM file, you need to run the Microsoft HTML Help Workshop over
-   the generated project (.hhp) file.
+   To create the CHM file, you need to run the Microsoft HTML Help Workshop
+   over the generated project (.hhp) file.  The make.bat script does this for
+   you on Windows.
 
  * "latex", which builds LaTeX source files as input to "pdflatex" to produce
    PDF documents.
@@ -75,6 +85,13 @@
  * "suspicious", which checks the parsed markup for text that looks like
    malformed and thus unconverted reST.
 
+ * "check", which checks for frequent markup errors.
+
+ * "serve", which serves the build/html directory on port 8000.
+
+ * "dist", (Unix only) which creates distributable archives of HTML, text,
+   PDF, and EPUB builds.
+
 
 Without make
 ------------

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list