From 1a328b0c5f6048cd670774860caeb5e45e05f1e1 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 9 Jul 2022 00:26:02 +0530 Subject: Makefile: Run tests using a for loop. If guile is passed all test files at once, it only runs the first one. * Makefile (check): Run tests using a for loop. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 37c912d..2bc955c 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,9 @@ all: $(objects) GUILE_AUTO_COMPILE=0 $(GUILD) compile -L . -o $@ $< check: - ./pre-inst-env $(GUILE) $(tests) + for test in $(tests); do \ + ./pre-inst-env $(GUILE) $$test; \ + done install: install -D $(scripts) --target-directory $(bindir) -- cgit v1.2.3