diff --git a/Makefile b/Makefile index 5e4587b..8185138 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,20 @@ .PHONY: test test: bin/s7 demo/.godot - @echo ๐Ÿงช Running tests + $(info ๐Ÿงช Running tests) bin/s7 test/test-main.scm bin/s7: s7/s7.c - @echo โš™๏ธ Building scheme interpreter + $(info ๐Ÿ› ๏ธ Building scheme interpreter) gcc s7/s7.c -o bin/s7 -DWITH_MAIN -DWITH_SYSTEM_EXTRAS -DWITH_C_LOADER=0 -I. -O2 -g -ldl -lm SRC_FILES := $(shell find src -type f ! -name "*.os") DEMO_FILES := $(shell find demo -type f -name "*.tscn" -or -name "*.scm") demo/.godot: $(SRC_FILES) $(DEMO_FILES) - @echo โš™๏ธ Building extension + $(info ๐Ÿ› ๏ธ Building extension) @scons - @echo ๐Ÿ“ฆ Importing test scene + $(info ๐Ÿ“ฆ Importing test scene) godot --path demo --headless --import .PHONY: run