.PHONY: none install clean dist

none:
	# Nothing to do

install:
	python setup.py install --home=/unsup/moosic-applet-latest

clean:
	rm -rf *~ *.pyc *.bak build MANIFEST

dist:
	python setup.py sdist --formats=gztar

