summaryrefslogtreecommitdiffstats
path: root/Lib/Makefile
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-10-20 23:16:58 (GMT)
committerGuido van Rossum <guido@python.org>1997-10-20 23:16:58 (GMT)
commit7eecc246a7632d3e39db3a648f5934715301886b (patch)
treed115efeba2497fb657d829e29f0a39ac09eecbcf /Lib/Makefile
parentcf809d6e48f2db77f70e53bd40fef4c7f2a9fe84 (diff)
downloadcpython-7eecc246a7632d3e39db3a648f5934715301886b.zip
cpython-7eecc246a7632d3e39db3a648f5934715301886b.tar.gz
cpython-7eecc246a7632d3e39db3a648f5934715301886b.tar.bz2
Remove .pyo files like .pyc files.
Diffstat (limited to 'Lib/Makefile')
-rw-r--r--Lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/Makefile b/Lib/Makefile
index b70dc12..1596ef1 100644
--- a/Lib/Makefile
+++ b/Lib/Makefile
@@ -2,7 +2,7 @@ all:
@echo Nothing to make in this directory.
clean:
- find . '(' -name '*.pyc' -o -name '*.fdc' \
+ find . '(' -name '*.py[co]' -o -name '*.fdc' \
-o -name core -o -name '*~' \
-o -name '[@,#]*' -o -name '*.old' \
-o -name '*.orig' -o -name '*.rej' \