diff options
author | Arun Isaac | 2023-12-20 09:44:13 +0000 |
---|---|---|
committer | Arun Isaac | 2023-12-20 09:44:13 +0000 |
commit | c2904874bae1177eb2a7b50c37c090b56e7165fb (patch) | |
tree | 49a741fac5cb36abc8b8da9d2039f08dd05911bf /Makefile | |
parent | 51716aed3c6084500e0995eaff37e2b3b5121d54 (diff) | |
download | gn-transform-databases-c2904874bae1177eb2a7b50c37c090b56e7165fb.tar.gz |
Use guile to run tests.
Disuse run64.
* Makefile (RUN64): Delete variable.
(GUILE): New variable.
(check): Use GUILE to run tests.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ GUILD = guild -RUN64 = guile-run64 +GUILE = guile top_level_module_dir = transform sources = $(wildcard $(top_level_module_dir)/*.scm) @@ -16,7 +16,7 @@ all: $(objects) .PHONY: check check: tests.scm - GUILE_LOAD_PATH=$(GUILE_LOAD_PATH):. $(RUN64) $^ + GUILE_LOAD_PATH=$(GUILE_LOAD_PATH):. $(GUILE) $^ # Clean |