aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f1a99cc8c4ddc037c6b239c93eab150c8f411ab6 (plain)
1
2
3
4
5
6
7
8
9
10
.PHONY: release

ifndef BUILDDIR
    BUILDDIR := $(shell mktemp -d "$(TMPDIR)/MASShortcut.XXXXXX")
endif

release:
	xcodebuild -scheme MASShortcut -configuration Release -derivedDataPath "$(BUILDDIR)" build
	open "$(BUILDDIR)/Build/Products/Release"