Staging
v0.5.1
Revision b4ae6a39992c43578a96320151003ee38680f681 authored by Guido van Rossum on 08 August 1996, 19:05:09 UTC, committed by Guido van Rossum on 08 August 1996, 19:05:09 UTC
1 parent 3bedce0
Raw File
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