cpython/Lib/Makefile
1994-01-04 23:24:22 +00:00

13 lines
286 B
Makefile

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