aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 77a23fc..fd2d718 100644
--- a/makefile
+++ b/makefile
@@ -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
3BIN_NAME := moonc 3BIN_NAME := moonp
4# Compiler used 4# Compiler used
5CXX ?= g++ 5CXX ?= 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
207test: release 207test: 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
212all: $(BIN_PATH)/$(BIN_NAME) 212all: $(BIN_PATH)/$(BIN_NAME)