Switching makefile to use inline tests.

This commit is contained in:
Bruce Hill 2018-07-22 16:32:16 -07:00
parent 4c1f0aca7a
commit 5224199fcf

View File

@ -25,9 +25,9 @@ all: build optimize
.PHONY: test .PHONY: test
test: build optimize test: build optimize
@echo "\033[1;4mRunning unoptimized tests...\033[0m" @echo "\033[1;4mRunning unoptimized tests...\033[0m"
@$(LUA_BIN) nomsu.lua tests @$(LUA_BIN) nomsu.lua tools/test.nom $(CORE_NOM_FILES) $(LIB_NOM_FILES)
@echo "\n\033[1;4mRunning optimized tests...\033[0m" @echo "\n\033[1;4mRunning optimized tests...\033[0m"
@$(LUA_BIN) nomsu.lua -O tests @$(LUA_BIN) nomsu.lua -O tools/test.nom $(CORE_NOM_FILES) $(LIB_NOM_FILES)
%.lua: %.moon %.lua: %.moon
@moonc $< @moonc $<