11 lines
251 B
Makefile
11 lines
251 B
Makefile
.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"
|
|
|