From 6f1dbe6dbe4b05d9ec9351501837aff7d0af3478 Mon Sep 17 00:00:00 2001 From: Maarten den Braber Date: Tue, 5 Feb 2019 10:32:55 +0100 Subject: [PATCH] Add Makefile for easier clean, build, install --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile 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/