From 10c9275171ca977ac7e631c75731857780bcc0d6 Mon Sep 17 00:00:00 2001 From: Stefano D'Angelo Date: Wed, 31 Jan 2024 11:20:42 +0100 Subject: [PATCH] try fixing vst3-make on macos --- templates/vst3-make/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/vst3-make/Makefile b/templates/vst3-make/Makefile index ba04cbf..2e326a1 100644 --- a/templates/vst3-make/Makefile +++ b/templates/vst3-make/Makefile @@ -41,7 +41,7 @@ all: build/${BUNDLE_DIR}/${DLL_FILE} build/${BUNDLE_DIR}/Contents/Info.plist build/${BUNDLE_DIR}/Contents/Info.plist: data/Info.plist | build/${BUNDLE_DIR}/Contents cp $^ $@ -build/${BUNDLE_DIR}/${DLL_FILE}: build/tmp/x86_64 build/tmp/arm64 | buindle/${BUNDLE_DIR}/Contents +build/${BUNDLE_DIR}/${DLL_FILE}: build/tmp/x86_64 build/tmp/arm64 | build/${BUNDLE_DIR}/${DLL_DIR} lipo -create -output $@ $^ build/tmp/x86_64: src/vst3.c src/data.h src/plugin.h | build/tmp @@ -50,7 +50,7 @@ build/tmp/x86_64: src/vst3.c src/data.h src/plugin.h | build/tmp build/tmp/arm64: src/vst3.c src/data.h src/plugin.h | build/tmp ${CC} src/vst3.c -o $@ ${CFLAGS_ALL} ${LDFLAGS_ALL} -arch arm64 -build/tmp: +build/tmp build/${BUILD_DIR}/Contents: mkdir -p $@ else @@ -62,7 +62,7 @@ build/${BUNDLE_DIR}/${DLL_FILE}: src/vst3.c src/data.h | build/${BUNDLE_DIR}/${D endif -build/${BUNDLE_DIR}/Contents build/${BUNDLE_DIR}/${DLL_DIR}: +build/${BUNDLE_DIR}/${DLL_DIR}: mkdir -p $@ clean: