diff options
author | Arun Isaac | 2022-07-09 00:26:02 +0530 |
---|---|---|
committer | Arun Isaac | 2022-07-09 00:26:02 +0530 |
commit | 1a328b0c5f6048cd670774860caeb5e45e05f1e1 (patch) | |
tree | 9a84a608969318581c9bcaf46302b654d1377665 /Makefile | |
parent | 7e4ae17f1c12269e8c468ef8278150cbf1c621eb (diff) | |
download | tissue-1a328b0c5f6048cd670774860caeb5e45e05f1e1.tar.gz tissue-1a328b0c5f6048cd670774860caeb5e45e05f1e1.tar.lz tissue-1a328b0c5f6048cd670774860caeb5e45e05f1e1.zip |
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |