diff options
author | Georg Brandl <georg@python.org> | 2011-01-05 11:00:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-01-05 11:00:25 (GMT) |
commit | 183fe81f8fbb6f924ea12dedac272ce61219e96c (patch) | |
tree | d80f1bedcb365e8d1188eb8c50b31726e81c2721 /Doc/Makefile | |
parent | 069149155bbd0ea33ab263c14c021f93125e9151 (diff) | |
download | cpython-183fe81f8fbb6f924ea12dedac272ce61219e96c.zip cpython-183fe81f8fbb6f924ea12dedac272ce61219e96c.tar.gz cpython-183fe81f8fbb6f924ea12dedac272ce61219e96c.tar.bz2 |
#10130: Prepare for building epub-format docs.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 83b2170..e7708fd 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -26,6 +26,7 @@ help: @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 " epub to make EPUB 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" @@ -81,6 +82,10 @@ text: BUILDER = text text: build @echo "Build finished; the text files are in build/text." +epub: BUILDER = epub +epub: build + @echo "Build finished; the epub files are in build/epub." + changes: BUILDER = changes changes: build @echo "The overview file is in build/changes." @@ -158,6 +163,17 @@ dist: cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2 + # archive the epub build + rm -rf build/epub + make epub + mkdir -p dist/python-$(DISTVERSION)-docs-epub + cp -pPR build/epub/*.epub dist/python-$(DISTVERSION)-docs-epub/ + tar -C dist -cf dist/python-$(DISTVERSION)-docs-epub.tar python-$(DISTVERSION)-docs-epub + bzip2 -9 -k dist/python-$(DISTVERSION)-docs-epub.tar + (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-epub.zip python-$(DISTVERSION)-docs-epub) + rm -r dist/python-$(DISTVERSION)-docs-epub + rm dist/python-$(DISTVERSION)-docs-epub.tar + check: $(PYTHON) tools/rstlint.py -i tools |