Staging
v0.8.1
Revision 21ef088265e20cdc2c7cff50eab432f8c620da01 authored by Guido van Rossum on 11 December 1998, 03:20:00 UTC, committed by Guido van Rossum on 11 December 1998, 03:20:00 UTC
1 parent 732aa2f
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