From 394b7ac1d7ac8a60efdaf7f961c537002e18dc85 Mon Sep 17 00:00:00 2001 From: Paolo Marrone Date: Thu, 5 Dec 2024 21:10:19 +0100 Subject: [PATCH] web bundle data/bin path --- templates/web-make/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/web-make/Makefile b/templates/web-make/Makefile index 93b329f..067735a 100644 --- a/templates/web-make/Makefile +++ b/templates/web-make/Makefile @@ -72,6 +72,9 @@ CXX_SRCS := $(COMMON_DIR)/src/new.cpp $(CXX_SRCS_EXTRA) CXX_OBJS := $(addprefix build/obj/, $(notdir $(CXX_SRCS:.cpp=.o))) endif +BUNDLE_DATA_PATH := build/web +BUNDLE_BIN_PATH := build/web + ALL := build/web/$(BUNDLE_NAME).wasm build/web/$(BUNDLE_NAME)_processor.js build/web/$(BUNDLE_NAME).js -include $(COMMON_DIR)/vars-extra.mk