From c1a599fccfd3c37ad2afc743b2a49cc5290fcb9f Mon Sep 17 00:00:00 2001 From: Li Jin Date: Thu, 28 Jul 2022 14:45:31 +0800 Subject: add missing operator checks for update assignment. --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 913d70b..11e59f3 100644 --- a/makefile +++ b/makefile @@ -192,10 +192,11 @@ endif @$(END_TIME) .PHONY: wasm -wasm: +wasm: clean @$(MAKE) generic CC='emcc -s WASM=1' AR='emar rcu' RANLIB='emranlib' -C $(SRC_PATH)/3rdParty/lua @mkdir -p doc/docs/.vuepress/public/js @emcc $(SRC_PATH)/yue_wasm.cpp $(SRC_PATH)/yuescript/ast.cpp $(SRC_PATH)/yuescript/parser.cpp $(SRC_PATH)/yuescript/yue_compiler.cpp $(SRC_PATH)/yuescript/yue_parser.cpp $(SRC_PATH)/yuescript/yuescript.cpp $(SRC_PATH)/3rdParty/lua/liblua.a -s WASM=1 -O2 -o doc/docs/.vuepress/public/js/yuescript.js -I $(SRC_PATH) -I $(SRC_PATH)/3rdParty/lua -std=c++17 --bind -fexceptions + @${MAKE} clean # Debug build for gdb debugging .PHONY: debug -- cgit v1.2.3-55-g6feb