diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9ca8003 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: clean build + +default: clean build install + +clean: + rm -rf dist/ build/ + +build: clean + python setup.py py2app + +install: build + rm -rf /Applications/RadioBar.app/ + cp -a dist/RadioBar.app /Applications/