summaryrefslogtreecommitdiffstats
path: root/Include/Makefile
blob: b70dc12f9be360d38b56ee7ae4c953835cdce8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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