Staging
v0.5.1
Revision 9144763aaeffb356cde80507ec2e286b31ccb90f authored by Guido van Rossum on 11 April 2000, 17:11:09 UTC, committed by Guido van Rossum on 11 April 2000, 17:11:09 UTC
1 parent 1c89b0e
Raw File
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