Staging
v0.5.1
https://github.com/python/cpython
Revision 746ea3598a6454528dae76f17b35ac29181b0874 authored by Guido van Rossum on 26 June 1996, 19:47:56 UTC, committed by Guido van Rossum on 26 June 1996, 19:47:56 UTC
1 parent 2281d35
Raw File
Tip revision: 746ea3598a6454528dae76f17b35ac29181b0874 authored by Guido van Rossum on 26 June 1996, 19:47:56 UTC
url2path for NT
Tip revision: 746ea35
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