Staging
v0.5.1
https://github.com/python/cpython
Revision 011813444cc1cae2d60a29750e719743edaa4b14 authored by Guido van Rossum on 03 October 1994, 16:43:15 UTC, committed by Guido van Rossum on 03 October 1994, 16:43:15 UTC
1 parent 619e1be
Raw File
Tip revision: 011813444cc1cae2d60a29750e719743edaa4b14 authored by Guido van Rossum on 03 October 1994, 16:43:15 UTC
Don't search for *.so modules since we can't handle them!
Tip revision: 0118134
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