Staging
v0.5.1
https://github.com/python/cpython
Revision 55e3927f58b848f0c980158527270b172a7ac68b authored by Jack Jansen on 07 October 1997, 21:47:25 UTC, committed by Jack Jansen on 07 October 1997, 21:47:25 UTC
1 parent d2c0ec7
Raw File
Tip revision: 55e3927f58b848f0c980158527270b172a7ac68b authored by Jack Jansen on 07 October 1997, 21:47:25 UTC
New exception interface
Tip revision: 55e3927
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