From d75848152e337fc9d3a4041ec310fea07476c0a8 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Mon, 3 Feb 2020 15:44:20 +0800 Subject: fix some cases when using backcall with assignment. --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 77a23fc..fd2d718 100644 --- a/makefile +++ b/makefile @@ -1,6 +1,6 @@ #### PROJECT SETTINGS #### # The name of the executable to be created -BIN_NAME := moonc +BIN_NAME := moonp # Compiler used CXX ?= g++ # Extension of source files used in the project @@ -206,7 +206,7 @@ clean: .PHONY: test test: release @echo "Compiling Moonscript codes..." - @./$(BIN_NAME) $(TEST_INPUT)/*.moon -l -t $(TEST_OUTPUT) + @./$(BIN_NAME) $(TEST_INPUT)/*.moon -t $(TEST_OUTPUT) # Main rule, checks the executable and symlinks to the output all: $(BIN_PATH)/$(BIN_NAME) -- cgit v1.2.3-55-g6feb