Staging
v0.8.1
https://github.com/python/cpython
Revision 0148bbf96643c6c8bb7f2ec9598bbf5b09ed494a authored by Guido van Rossum on 22 December 1997, 22:41:40 UTC, committed by Guido van Rossum on 22 December 1997, 22:41:40 UTC
1 parent 9597daf
Raw File
Tip revision: 0148bbf96643c6c8bb7f2ec9598bbf5b09ed494a authored by Guido van Rossum on 22 December 1997, 22:41:40 UTC
AMK's latest
Tip revision: 0148bbf
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