diff options
author | Georg Brandl <georg@python.org> | 2010-03-13 10:02:01 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-13 10:02:01 (GMT) |
commit | da746d7a0e9d8b573e639bdce25430a69d283c1a (patch) | |
tree | c680dbacd1d85424efa688a7e098383e34466abe /Doc/Makefile | |
parent | 87e62f07220ee944e23e0fbc36c3d0928810e619 (diff) | |
download | cpython-da746d7a0e9d8b573e639bdce25430a69d283c1a.zip cpython-da746d7a0e9d8b573e639bdce25430a69d283c1a.tar.gz cpython-da746d7a0e9d8b573e639bdce25430a69d283c1a.tar.bz2 |
Merged revisions 77173 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r77173 | benjamin.peterson | 2009-12-31 04:35:15 +0100 (Do, 31 Dez 2009) | 13 lines
Merged revisions 77151-77152 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77151 | georg.brandl | 2009-12-30 12:32:50 -0600 (Wed, 30 Dec 2009) | 1 line
#7487: update Pygments version.
........
r77152 | georg.brandl | 2009-12-30 12:36:09 -0600 (Wed, 30 Dec 2009) | 1 line
#7602: improve "clean" and "checkout" targets now that all tools are in externals.
........
................
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index a8b46bd..cc47e40 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -47,11 +47,7 @@ checkout: svn checkout $(SVNROOT)/external/Pygments-1.1.1/pygments tools/pygments; \ fi -update: checkout - svn update tools/sphinx - svn update tools/docutils - svn update tools/jinja2 - svn update tools/pygments +update: clean checkout build: checkout mkdir -p build/$(BUILDER) build/doctrees @@ -111,6 +107,9 @@ htmlview: html clean: -rm -rf build/* -rm -rf tools/sphinx + -rm -rf tools/pygments + -rm -rf tools/jinja2 + -rm -rf tools/docutils dist: -rm -rf dist |