Staging
v0.8.1
Revision 3823420ca4432c20892cbff0267219fe16358a94 authored by Guido van Rossum on 31 July 1996, 17:55:19 UTC, committed by Guido van Rossum on 31 July 1996, 17:55:19 UTC
1 parent 5e41644
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