cpython/Misc/Makefile
1994-01-26 10:20:16 +00:00

11 lines
242 B
Makefile

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