Staging
v0.8.1
Revision b95ea18a4c16e48e00f5c8fd0740ff8c3553373d authored by Jack Jansen on 17 August 1995, 14:32:23 UTC, committed by Jack Jansen on 17 August 1995, 14:32:23 UTC
1 parent 91a6398
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