summaryrefslogtreecommitdiff
path: root/Makefile
blob: 152a2f83a39cee8ee62bed6c299e0157a01ae12d (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 . -regextype posix-extended -regex '.*~|.*swp|.*#' -exec rm {} \;