Staging
v0.5.1
https://github.com/python/cpython
Revision 9a513efffa9797e01745dab57dce3dc8e76bf28e authored by Guido van Rossum on 09 October 1997, 23:32:24 UTC, committed by Guido van Rossum on 09 October 1997, 23:32:24 UTC
1 parent 9192267
Raw File
Tip revision: 9a513efffa9797e01745dab57dce3dc8e76bf28e authored by Guido van Rossum on 09 October 1997, 23:32:24 UTC
Final touch -- Don's SGI_ABI patches.
Tip revision: 9a513ef
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
back to top