Staging
v0.5.1
https://github.com/python/cpython
Revision 3179b36014d1dd48cc3f1363edf4b1adecc12c79 authored by Guido van Rossum on 12 October 1998, 20:40:47 UTC, committed by Guido van Rossum on 12 October 1998, 20:40:47 UTC
1 parent 7f20263
Raw File
Tip revision: 3179b36014d1dd48cc3f1363edf4b1adecc12c79 authored by Guido van Rossum on 12 October 1998, 20:40:47 UTC
When no master widget is specified, use options['parent'] if it exists.
Tip revision: 3179b36
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