diff --git a/Makefile b/Makefile index 3133075..91484ab 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,7 @@ modules := \ $(wildcard modules/game/*.scm) \ $(wildcard external-lib/srfi/*.scm) -tests := \ - $(wildcard test/tests/*.scm) +tests := test/tests/entity-manager-tests.scm game.wasm: game.scm $(modules) $(external-lib) guild compile-wasm -L modules -L external-lib -o $@ $< @@ -26,8 +25,8 @@ bundle: game.wasm rm game.zip || true zip game.zip -r assets/ js-runtime/ game.js game.css game.wasm index.html -check: $(tests) - guild compile-wasm -L modules -L test -L external-lib --run $< +check: + guild compile-wasm -L modules -L test -L external-lib --run $(tests) $< clean: rm -f game.wasm game.zip