diff options
author | Arun Isaac | 2022-04-09 20:04:19 +0530 |
---|---|---|
committer | Arun Isaac | 2022-04-09 20:04:19 +0530 |
commit | ffddcbddfb49e4bac9497dd87b21c5d5a1feebd6 (patch) | |
tree | c91147e53de6632f75a52657df42e50f02de0bd4 /Makefile | |
parent | 9a322ee22513f62020e8f31c7d6cfc0a6c842705 (diff) | |
download | ccwl-ffddcbddfb49e4bac9497dd87b21c5d5a1feebd6.tar.gz ccwl-ffddcbddfb49e4bac9497dd87b21c5d5a1feebd6.tar.lz ccwl-ffddcbddfb49e4bac9497dd87b21c5d5a1feebd6.zip |
Makefile: Compile scheme source code with auto-compile disabled.
* Makefile (%.go): Set GUILE_AUTO_COMPILE=0.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ godir = $(libdir)/guile/$(guile_effective_version)/site-ccache/$(top_level_modul all: $(objects) %.go: %.scm - $(GUILD) compile -L . -o $@ $< + GUILE_AUTO_COMPILE=0 $(GUILD) compile -L . -o $@ $< # Run tests |