diff options
author | Georg Brandl <georg@python.org> | 2008-06-01 16:41:31 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-01 16:41:31 (GMT) |
commit | 4f2c998ca97fdcfa2b137cd54a9fdba4a831d242 (patch) | |
tree | 8dd5ae5f1e7fa5291bc298ecedb055f5ef617f38 /Doc/Makefile | |
parent | 51df0647672bc758da6d58eecfe45da9dc5913df (diff) | |
download | cpython-4f2c998ca97fdcfa2b137cd54a9fdba4a831d242.zip cpython-4f2c998ca97fdcfa2b137cd54a9fdba4a831d242.tar.gz cpython-4f2c998ca97fdcfa2b137cd54a9fdba4a831d242.tar.bz2 |
Add plain text make target.
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 5e17cf8..9795315 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -21,6 +21,7 @@ help: @echo " web to make file usable by Sphinx.web" @echo " htmlhelp to make HTML files and a HTML help project" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " text to make plain text files" @echo " changes to make an overview over all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" @echo " coverage to check documentation coverage for library and C API" @@ -75,6 +76,10 @@ latex: build @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \ "run these through (pdf)latex." +text: BUILDER = text +text: build + @echo "Build finished; the text files are in build/text." + changes: BUILDER = changes changes: build @echo "The overview file is in build/changes." |