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

clean:
		find . '(' -name '*.py[co]' -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