summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-24 19:24:44 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-24 19:24:44 (GMT)
commit067b38eed41bc659ab3d3f9d780a824ed5d1b857 (patch)
treee107a2c0e8f7f67c53ef5940df489363d8ce9b15 /Makefile.pre.in
parent1f7e18cd744c106a889e05c56b0bdc03c1070faf (diff)
downloadcpython-067b38eed41bc659ab3d3f9d780a824ed5d1b857.zip
cpython-067b38eed41bc659ab3d3f9d780a824ed5d1b857.tar.gz
cpython-067b38eed41bc659ab3d3f9d780a824ed5d1b857.tar.bz2
Merged revisions 75047 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75047 | mark.dickinson | 2009-09-24 20:21:07 +0100 (Thu, 24 Sep 2009) | 3 lines Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target. Thanks egreen. ........
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index fedcde5..ba3aa2e 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1147,7 +1147,7 @@ TAGS::
for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
# Sanitation targets -- clean leaves libraries, executables and tags
-# files, which clobber removes those as well
+# files, which clobber removes as well
pycremoval:
find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
@@ -1167,6 +1167,7 @@ clean: pycremoval
find . -name '*.s[ol]' -exec rm -f {} ';'
find build -name 'fficonfig.h' -exec rm -f {} ';' || true
find build -name 'fficonfig.py' -exec rm -f {} ';' || true
+ -rm -f Lib/lib2to3/*Grammar*.pickle
profile-removal:
find . -name '*.gc??' -exec rm -f {} ';'