Makefile 289 Bytes
Newer Older
1 2 3 4
all:
		@echo Nothing to make in this directory.

clean:
5
		find . '(' -name '*.py[co]' -o -name '*.fdc' \
6 7 8 9 10 11 12
			-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