From dec86c7ba31841afa886c23090289a99d3bb4949 Mon Sep 17 00:00:00 2001 From: David Marmor Date: Tue, 6 Jan 2015 16:34:10 -0800 Subject: [PATCH] Final details for having a binary release on GitHub. --- .gitignore | 1 + Makefile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3f56d17..b2b29ec 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /chromessb.app/** +/osx-chrome-ssb-gui-1.0.dmg diff --git a/Makefile b/Makefile index cc9a833..88e71ae 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ APP=chromessb.app/Contents APP_RSRC=$(APP)/Resources APP_SCPT=$(APP_RSRC)/Scripts +INSTALL_PATH="/Applications/Make Chrome SSB.app" .PHONY: all install clean @@ -34,7 +35,8 @@ clean-all: clean find . -name '*~' -o -name '.DS_Store' -exec rm {} \; install: all - cp -aR chromessb.app "/Applications/Chrome Apps/Make Chrome SSB.app" + rm -rf $(INSTALL_PATH) + cp -aR chromessb.app $(INSTALL_PATH) $(APP_SCPT)/main.scpt: src/main.applescript osacompile -x -o "chromessb.app" src/main.applescript