Remove .pyo files like .pyc files.

This commit is contained in:
Guido van Rossum 1997-10-20 23:16:58 +00:00
parent cf809d6e48
commit 7eecc246a7
1 changed files with 1 additions and 1 deletions

View File

@ -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' \