about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2023-12-20 09:44:13 +0000
committerArun Isaac2023-12-20 09:44:13 +0000
commitc2904874bae1177eb2a7b50c37c090b56e7165fb (patch)
tree49a741fac5cb36abc8b8da9d2039f08dd05911bf
parent51716aed3c6084500e0995eaff37e2b3b5121d54 (diff)
downloadgn-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.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bed80c5..ea17c62 100644
--- a/Makefile
+++ b/Makefile
@@ -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