aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2022-07-28 14:45:31 +0800
committerLi Jin <dragon-fly@qq.com>2022-07-28 14:45:31 +0800
commitc1a599fccfd3c37ad2afc743b2a49cc5290fcb9f (patch)
treeece02d19a99c1a2038141892ae14a69097a0eb75 /makefile
parent1510038121252bd106b90e5f60b3c42978e3a572 (diff)
downloadyuescript-c1a599fccfd3c37ad2afc743b2a49cc5290fcb9f.tar.gz
yuescript-c1a599fccfd3c37ad2afc743b2a49cc5290fcb9f.tar.bz2
yuescript-c1a599fccfd3c37ad2afc743b2a49cc5290fcb9f.zip
add missing operator checks for update assignment.
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index 913d70b..11e59f3 100644
--- a/makefile
+++ b/makefile
@@ -192,10 +192,11 @@ endif
192 @$(END_TIME) 192 @$(END_TIME)
193 193
194.PHONY: wasm 194.PHONY: wasm
195wasm: 195wasm: clean
196 @$(MAKE) generic CC='emcc -s WASM=1' AR='emar rcu' RANLIB='emranlib' -C $(SRC_PATH)/3rdParty/lua 196 @$(MAKE) generic CC='emcc -s WASM=1' AR='emar rcu' RANLIB='emranlib' -C $(SRC_PATH)/3rdParty/lua
197 @mkdir -p doc/docs/.vuepress/public/js 197 @mkdir -p doc/docs/.vuepress/public/js
198 @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 198 @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
199 @${MAKE} clean
199 200
200# Debug build for gdb debugging 201# Debug build for gdb debugging
201.PHONY: debug 202.PHONY: debug