From c9b70274787ed8a77e7b47c4628197f0c6c1ba30 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Mon, 7 Aug 2023 09:57:27 +0800 Subject: fixing issue #143 and #144. --- makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index 4a886df..c66b0df 100644 --- a/makefile +++ b/makefile @@ -287,6 +287,7 @@ test: debug @./$(BIN_NAME) $(TEST_INPUT)/teal_lang.yue -o $(TEST_OUTPUT)/teal_lang.lua @./$(BIN_NAME) $(TEST_INPUT)/loops.yue -o $(TEST_OUTPUT)/5.1/loops.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(TEST_OUTPUT)/5.1/try_catch.lua --target=5.1 + @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(TEST_OUTPUT)/5.1/attrib.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(TEST_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 @echo -en "Compile time: " @$(END_TIME) @@ -303,6 +304,7 @@ gen: release @./$(BIN_NAME) $(TEST_INPUT)/teal_lang.yue -o $(GEN_OUTPUT)/teal_lang.lua @./$(BIN_NAME) $(TEST_INPUT)/loops.yue -o $(GEN_OUTPUT)/5.1/loops.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(GEN_OUTPUT)/5.1/try_catch.lua --target=5.1 + @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(GEN_OUTPUT)/5.1/attrib.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(GEN_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 @echo -en "Compile time: " @$(END_TIME) -- cgit v1.2.3-55-g6feb