0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 08:52:25 +01:00
cpython/Misc/Makefile

11 lines
242 B
Makefile
Raw Normal View History

1994-01-26 11:20:16 +01:00
all:
@echo Nothing to make in this directory.
clean:
find . '(' -name '*.pyc' -o -name core -o -name '*~' \
-o -name '[@,#]*' -o -name '*.old' \
-o -name '*.orig' -o -name '*.rej' ')' \
-print -exec rm -f {} ';'
clobber: clean