avoid makefile variable clash with vino in vst3

This commit is contained in:
Stefano D'Angelo 2024-12-28 10:41:06 +01:00
parent 471d6739ef
commit 1be33ad3f0

View File

@ -31,16 +31,16 @@ MKINC_DIR ?= $(COMMON_DIR)
BUNDLE_DIR := $(BUNDLE_NAME).vst3 BUNDLE_DIR := $(BUNDLE_NAME).vst3
ifeq ($(OS), Windows_NT) ifeq ($(OS), Windows_NT)
PLATFORM := x86_64-win VST3_PLATFORM := x86_64-win
else else
UNAME_S := $(shell uname -s) UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S), Darwin) ifeq ($(UNAME_S), Darwin)
PLATFORM := MacOS VST3_PLATFORM := MacOS
else else
PLATFORM := $(shell uname -m)-linux VST3_PLATFORM := $(shell uname -m)-linux
endif endif
endif endif
DLL_DIR := Contents/$(PLATFORM) DLL_DIR := Contents/$(VST3_PLATFORM)
BUILD_BIN_DIR := build/$(BUNDLE_DIR)/$(DLL_DIR) BUILD_BIN_DIR := build/$(BUNDLE_DIR)/$(DLL_DIR)
BUILD_DATA_DIR := build/$(BUNDLE_DIR)/Contents/Resources BUILD_DATA_DIR := build/$(BUNDLE_DIR)/Contents/Resources