summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Belt <andrewpbelt@gmail.com>2024-05-04 05:46:12 -0400
committerAndrew Belt <andrewpbelt@gmail.com>2024-05-04 06:36:35 -0400
commitb0c7675e584419da0f48d9c348582eea0dfdd7a2 (patch)
tree1b1ede42d2f75408e754776fb894a06c9f02539c
parent8ca33386e9eb2ac348a934da2a8de472712266f9 (diff)
Add lipo target for creating Mac fat binary.
-rw-r--r--Makefile16
-rw-r--r--arch.mk2
2 files changed, 15 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b52ad9c1..50e07298 100644
--- a/Makefile
+++ b/Makefile
@@ -163,7 +163,7 @@ endif
# The following targets are not supported for public use
-DIST_NAME := RackFree-$(VERSION)-$(ARCH_NAME)
+DIST_NAME = RackFree-$(VERSION)-$(ARCH_NAME)
ifdef ARCH_MAC
DIST_BUNDLE := VCV\ Rack\ $(VERSION_MAJOR)\ Free.app
DIST_DIR := dist/$(DIST_BUNDLE)
@@ -174,7 +174,7 @@ DIST_MD := $(wildcard *.md)
DIST_HTML := $(patsubst %.md, build/%.html, $(DIST_MD))
DIST_RES := res cacert.pem Core.json template.vcv LICENSE-GPLv3.txt $(DIST_HTML)
DIST_SDK_DIR := dist/Rack-SDK
-DIST_SDK := dist/Rack-SDK-$(VERSION)-$(ARCH_NAME).zip
+DIST_SDK = dist/Rack-SDK-$(VERSION)-$(ARCH_NAME).zip
dist: $(DIST_DIR)
@@ -275,6 +275,18 @@ endif
cd dist && zip -q -9 -r ../$(DIST_SDK) $(notdir $(DIST_SDK_DIR))
+lipo: $(DIST_DIR) $(DIST_SDK_DIR)
+ifndef OTHER_RACK_DIR
+ $(error OTHER_RACK_DIR not defined)
+endif
+ifdef ARCH_MAC
+ lipo -create -output $(DIST_DIR)/Contents/Resources/$(TARGET) $(DIST_DIR)/Contents/Resources/$(TARGET) $(OTHER_RACK_DIR)/$(DIST_DIR)/Contents/Resources/$(TARGET)
+ lipo -create -output $(DIST_DIR)/Contents/MacOS/$(STANDALONE_TARGET) $(DIST_DIR)/Contents/MacOS/$(STANDALONE_TARGET) $(OTHER_RACK_DIR)/$(DIST_DIR)/Contents/MacOS/$(STANDALONE_TARGET)
+ lipo -create -output $(DIST_SDK_DIR)/$(TARGET) $(DIST_SDK_DIR)/$(TARGET) $(OTHER_RACK_DIR)/$(DIST_SDK_DIR)/$(TARGET)
+ cp $(OTHER_RACK_DIR)/$(DIST_DIR)/Contents/Resources/Fundamental-*.vcvplugin $(DIST_DIR)/Contents/Resources/
+endif
+
+
notarize:
ifdef ARCH_MAC
# Submit installer package to Apple
diff --git a/arch.mk b/arch.mk
index a2a75a34..66846fbe 100644
--- a/arch.mk
+++ b/arch.mk
@@ -30,4 +30,4 @@ else
$(error Could not determine operating system of $(MACHINE))
endif
-ARCH_NAME := $(ARCH_OS)-$(ARCH_CPU)
+ARCH_NAME = $(ARCH_OS)-$(ARCH_CPU)