summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8e028c8db9970339d072e52d02bc2214b0943eed (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 {} \;