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