diff options
| author | Li Jin <dragon-fly@qq.com> | 2020-02-03 15:44:20 +0800 |
|---|---|---|
| committer | Li Jin <dragon-fly@qq.com> | 2020-02-03 15:44:20 +0800 |
| commit | d75848152e337fc9d3a4041ec310fea07476c0a8 (patch) | |
| tree | 22e74a062b8eaff1fd99f002c473ccdfd5181157 /makefile | |
| parent | d8901102a1e39e651b08b66257c176b5803b9bc0 (diff) | |
| download | yuescript-d75848152e337fc9d3a4041ec310fea07476c0a8.tar.gz yuescript-d75848152e337fc9d3a4041ec310fea07476c0a8.tar.bz2 yuescript-d75848152e337fc9d3a4041ec310fea07476c0a8.zip | |
fix some cases when using backcall with assignment.
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,6 +1,6 @@ | |||
| 1 | #### PROJECT SETTINGS #### | 1 | #### PROJECT SETTINGS #### |
| 2 | # The name of the executable to be created | 2 | # The name of the executable to be created |
| 3 | BIN_NAME := moonc | 3 | BIN_NAME := moonp |
| 4 | # Compiler used | 4 | # Compiler used |
| 5 | CXX ?= g++ | 5 | CXX ?= g++ |
| 6 | # Extension of source files used in the project | 6 | # Extension of source files used in the project |
| @@ -206,7 +206,7 @@ clean: | |||
| 206 | .PHONY: test | 206 | .PHONY: test |
| 207 | test: release | 207 | test: release |
| 208 | @echo "Compiling Moonscript codes..." | 208 | @echo "Compiling Moonscript codes..." |
| 209 | @./$(BIN_NAME) $(TEST_INPUT)/*.moon -l -t $(TEST_OUTPUT) | 209 | @./$(BIN_NAME) $(TEST_INPUT)/*.moon -t $(TEST_OUTPUT) |
| 210 | 210 | ||
| 211 | # Main rule, checks the executable and symlinks to the output | 211 | # Main rule, checks the executable and symlinks to the output |
| 212 | all: $(BIN_PATH)/$(BIN_NAME) | 212 | all: $(BIN_PATH)/$(BIN_NAME) |
