summaryrefslogtreecommitdiffstats
path: root/Misc/Makefile
blob: 9df71109760b368e405d9c51939f848067b2ff08 (plain)
1
2
3
4
5
6
7
8
9
10
all:
		@echo Nothing to make in this directory.

clean:
		find . '(' -name '*.pyc' -o -name core -o -name '*~' \
			-o -name '[@,#]*' -o -name '*.old' \
			-o -name '*.orig' -o -name '*.rej' ')' \
			-print -exec rm -f {} ';'

clobber:	clean