Skip to content

Commit

Permalink
Add Makefile for easier clean, build, install
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbraber committed Feb 5, 2019
1 parent c8cb3dc commit 6f1dbe6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions 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/

0 comments on commit 6f1dbe6

Please sign in to comment.