From df56b27c786e97ea99231fd541ab5b2bc82bae7b Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 5 May 2022 16:02:12 +0530 Subject: Makefile: Disable auto-compilation while compiling. * Makefile (%.go): Set GUILE_AUTO_COMPILE to 0. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 87618c1..c0cbc9b 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ objects = $(sources:.scm=.go) all: $(objects) %.go: %.scm - $(GUILD) compile -L . -o $@ $< + GUILE_AUTO_COMPILE=0 $(GUILD) compile -L . -o $@ $< # Tests -- cgit v1.2.3