diff options
author | Arun Isaac | 2022-05-05 16:02:12 +0530 |
---|---|---|
committer | Arun Isaac | 2022-05-05 16:02:12 +0530 |
commit | df56b27c786e97ea99231fd541ab5b2bc82bae7b (patch) | |
tree | d2010e37349709a4b2c7925692d433bf52733d6d /Makefile | |
parent | 6a093401f02b0a3aa9c4468042a05db9f8439ad7 (diff) | |
download | gn-transform-databases-df56b27c786e97ea99231fd541ab5b2bc82bae7b.tar.gz |
Makefile: Disable auto-compilation while compiling.
* Makefile (%.go): Set GUILE_AUTO_COMPILE to 0.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |