Staging
v0.5.1
https://github.com/python/cpython
Revision 20d529be264abd2aa162fc647641b52dbb117656 authored by Thomas Heller on 12 October 2000, 19:31:13 UTC, committed by Thomas Heller on 12 October 2000, 19:31:13 UTC
This should close SF bug (patch)
http://sourceforge.net/patch/?func=detailpatch&patch_id=101844&group_id=5470
1 parent 73574ee
Raw File
Tip revision: 20d529be264abd2aa162fc647641b52dbb117656 authored by Thomas Heller on 12 October 2000, 19:31:13 UTC
Recreated after installer source code changes.
Tip revision: 20d529b
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