Staging
v0.5.1
https://github.com/python/cpython
Revision 7642f5cf3899d296b111d2a21d531cbd795215fb authored by Greg Ward on 31 March 2000, 16:47:40 UTC, committed by Greg Ward on 31 March 2000, 16:47:40 UTC
1 parent d1bda0c
Raw File
Tip revision: 7642f5cf3899d296b111d2a21d531cbd795215fb authored by Greg Ward on 31 March 2000, 16:47:40 UTC
Patch from Thomas Heller: use the new winreg module if available.
Tip revision: 7642f5c
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