aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-03-04 02:45:06 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-03-06 11:37:32 +0100
commit70ae8b8684635e54079e4e26e4a729b61583073e (patch)
tree9cc8a6579cda0079eac6cd42178878f0e002f432 /Makefile
parentAdd missing (ice-9 format) imports. (diff)
downloadcalp-70ae8b8684635e54079e4e26e4a729b61583073e.tar.gz
calp-70ae8b8684635e54079e4e26e4a729b61583073e.tar.xz
Made make sequence quieter.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 93dd6b6c..be77b2c4 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,6 @@ SCM_FILES = $(shell find module/ -type f -name \*.scm)
GO_FILES = $(SCM_FILES:module/%.scm=obj-$(GUILE_VERSION)/%.go)
GUILE_C_FLAGS = -Lmodule \
- -Wunused-toplevel \
-Wshadowed-toplevel -Wunbound-variable \
-Wmacro-use-before-definition -Warity-mismatch \
-Wduplicate-case-datum -Wbad-case-datum
@@ -27,8 +26,8 @@ static:
$(MAKE) -C static
obj-$(GUILE_VERSION)/%.go: module/%.scm
- @echo $(GUILD) compile $<
- @$(GUILD) compile $(GUILE_C_FLAGS) -o $@ $<
+ @echo $(GUILD) $(GUILE_VERSION) compile $<
+ @$(GUILD) compile $(GUILE_C_FLAGS) -o $@ $< >/dev/null
# Phony target used by test/run-tests.scm and main to
# automatically compile everything before they run.