diff options
author | Georg Brandl <georg@python.org> | 2010-03-13 10:02:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-13 10:02:09 (GMT) |
commit | de1838c4a32f7da46155fd0024fe51b35979bf65 (patch) | |
tree | e1c896d356f58025ab815bb97992738f68d8c44c /Doc/Makefile | |
parent | dea339914d9b898c0e1d04a56e181f6408b3e0ca (diff) | |
download | cpython-de1838c4a32f7da46155fd0024fe51b35979bf65.zip cpython-de1838c4a32f7da46155fd0024fe51b35979bf65.tar.gz cpython-de1838c4a32f7da46155fd0024fe51b35979bf65.tar.bz2 |
Merged revisions 77152 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77152 | georg.brandl | 2009-12-30 19:36:09 +0100 (Mi, 30 Dez 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 3076777..2976f6a 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 |