Staging
v0.8.1
https://github.com/python/cpython
Revision 1e57a04301355bec43044951d57c316e7d3ffc5b authored by Guido van Rossum on 09 October 1998, 13:26:01 UTC, committed by Guido van Rossum on 09 October 1998, 13:26:01 UTC
1 parent 1d5766f
Raw File
Tip revision: 1e57a04301355bec43044951d57c316e7d3ffc5b authored by Guido van Rossum on 09 October 1998, 13:26:01 UTC
Removed unnecessary import of cl and CL. (Sjoerd)
Tip revision: 1e57a04
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
back to top