mirror of https://github.com/python/cpython
Initial revision
This commit is contained in:
parent
80e32bf546
commit
afee3eb347
|
@ -0,0 +1,12 @@
|
|||
all:
|
||||
@echo Nothing to make in this directory.
|
||||
|
||||
clean:
|
||||
find . '(' -name '*.pyc' -o -name '*.fdc' \
|
||||
-o -name core -o -name '*~' \
|
||||
-o -name '[@,#]*' -o -name '*.old' \
|
||||
-o -name '*.orig' -o -name '*.rej' \
|
||||
-o -name '*.bak' ')' \
|
||||
-print -exec rm -f {} ';'
|
||||
|
||||
clobber: clean
|
Loading…
Reference in New Issue