diff --git a/templates/android-make/Makefile b/templates/android-make/Makefile index ce74962..5e20dd0 100644 --- a/templates/android-make/Makefile +++ b/templates/android-make/Makefile @@ -99,6 +99,9 @@ CXX_OBJS := $(addprefix build/obj/, $(notdir $(CXX_SRCS:.cpp=.o))) ALL := build/$(BUNDLE_NAME).apk +BUILD_BIN_DIR := build/apk/lib/armeabi-v7a +BUILD_DATA_DIR := build/assets/index.html + -include $(MKINC_DIR)/vars-extra.mk all: $(ALL) diff --git a/templates/cmd-make/Makefile b/templates/cmd-make/Makefile index bd682db..964139d 100644 --- a/templates/cmd-make/Makefile +++ b/templates/cmd-make/Makefile @@ -73,6 +73,9 @@ CXX_OBJS := $(addprefix build/obj/, $(notdir $(CXX_SRCS:.cpp=.o))) ALL := build/$(PROGRAM) +BUILD_BIN_DIR := build +BUILD_DATA_DIR := build + -include $(MKINC_DIR)/vars-extra.mk all: $(ALL) diff --git a/templates/lv2-make/Makefile b/templates/lv2-make/Makefile index 4b568db..a344a07 100644 --- a/templates/lv2-make/Makefile +++ b/templates/lv2-make/Makefile @@ -84,6 +84,9 @@ CXX_OBJS := $(addprefix build/obj/, $(notdir $(CXX_SRCS:.cpp=.o))) ALL := build/$(BUNDLE_DIR)/manifest.ttl build/$(BUNDLE_DIR)/$(DLL_FILE) +BUILD_BIN_DIR := build/$(BUNDLE_DIR) +BUILD_DATA_DIR := build/$(BUNDLE_DIR) + -include $(MKINC_DIR)/vars-extra.mk all: $(ALL) diff --git a/templates/vst3-make/Makefile b/templates/vst3-make/Makefile index 306dbc5..071c709 100644 --- a/templates/vst3-make/Makefile +++ b/templates/vst3-make/Makefile @@ -101,6 +101,9 @@ ifeq ($(UNAME_S), Darwin) ALL := $(ALL) build/$(BUNDLE_DIR)/Contents/Info.plist build/$(BUNDLE_DIR)/Contents/PkgInfo endif +BUILD_BIN_DIR := build/$(BUNDLE_DIR)/$(DLL_DIR) +BUILD_DATA_DIR := build/$(BUNDLE_DIR)/Contents/Resources + -include $(MKINC_DIR)/vars-extra.mk all: $(ALL) diff --git a/templates/web-make/Makefile b/templates/web-make/Makefile index 249e59e..5cfbbab 100644 --- a/templates/web-make/Makefile +++ b/templates/web-make/Makefile @@ -80,6 +80,9 @@ endif ALL := build/web/$(BUNDLE_NAME)/module.wasm build/web/$(BUNDLE_NAME)/processor.js build/web/$(BUNDLE_NAME)/module.js +BUILD_BIN_DIR := build/web +BUILD_DATA_DIR := build/web + -include $(MKINC_DIR)/vars-extra.mk all: $(ALL)