Staging
v0.5.1
https://github.com/python/cpython
Revision b19d86232b39bd20fe56d82d63e90e0b33c620e1 authored by Guido van Rossum on 09 March 1994, 12:54:32 UTC, committed by Guido van Rossum on 09 March 1994, 12:54:32 UTC
1 parent 131e2ab
Raw File
Tip revision: b19d86232b39bd20fe56d82d63e90e0b33c620e1 authored by Guido van Rossum on 09 March 1994, 12:54:32 UTC
Search for test files in sys.path
Tip revision: b19d862
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