BUILD_BIN/DATA_DIR

This commit is contained in:
Stefano D'Angelo 2024-12-13 08:40:48 +01:00
parent f02a9fa554
commit 792372e5f1
5 changed files with 15 additions and 0 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)