From 88c735ebb94305a69c1d9968c0973e115952a0ab Mon Sep 17 00:00:00 2001 From: Yu-Xi Lim Date: Sat, 29 Aug 2026 17:49:08 +0800 Subject: [PATCH] Add a make install target for a local /Applications build Wraps Scripts/build-developer-id.sh with notarization off and dittos the exported app over /Applications/KVMConsole.app. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_016uaMVeJHm8yPSGzpotfKBU --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3381153 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +APP := KVMConsole +DEST := /Applications/$(APP).app +# Local installs skip notarization; set NOTARIZE=1 to notarize like a release. +export NOTARIZE ?= 0 + +.PHONY: install +install: + Scripts/build-developer-id.sh + rm -rf "$(DEST)" + ditto build/developer-id/export/$(APP).app "$(DEST)" + @echo "Installed $(DEST)"