summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8c3bfa96cae856d98f668281270eb3acee09578a (plain)
1
2
3
4
5
6
7
8
all:
	echo "Please select a target from the Makefile."

clean:
	rm -f *.pyc

distclean: clean
	find . -regex '.*\(~\|#\|\.swp\)' -exec rm {} \;