From fb6d787afff778399a40d5e98e172b2eee3ba1a9 Mon Sep 17 00:00:00 2001 From: TakeV Date: Mon, 27 May 2024 02:24:27 -0400 Subject: [PATCH] Update make check --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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