cpython/Lib/Makefile

13 lines
289 B
Makefile
Raw Normal View History

all:
@echo Nothing to make in this directory.
clean:
1997-10-20 20:16:58 -03:00
find . '(' -name '*.py[co]' -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