Skip to content
Snippets Groups Projects
Commit dab5d51b authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

build: Add silent-rules machinery for `guild compile'.

* Makefile.am (AM_V_GUILEC, AM_V_GUILEC_, AM_V_GUILEC_0): New
  variables.
  (.scm.go): Use $(AM_V_GUILEC).
parent 30dd8310
No related branches found
No related tags found
No related merge requests found
...@@ -340,10 +340,14 @@ CLEANFILES = \ ...@@ -340,10 +340,14 @@ CLEANFILES = \
$(GOBJECTS) \ $(GOBJECTS) \
$(SCM_TESTS:%.scm=%.log) $(SCM_TESTS:%.scm=%.log)
AM_V_GUILEC = $(AM_V_GUILEC_$(V))
AM_V_GUILEC_ = $(AM_V_GUILEC_$(AM_DEFAULT_VERBOSITY))
AM_V_GUILEC_0 = @echo " GUILEC" $@;
# XXX: Use the C locale for when Guile lacks # XXX: Use the C locale for when Guile lacks
# <http://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>. # <http://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>.
.scm.go: .scm.go:
$(MKDIR_P) `dirname "$@"` $(AM_V_GUILEC)$(MKDIR_P) `dirname "$@"` ; \
LC_ALL=C \ LC_ALL=C \
$(top_builddir)/pre-inst-env \ $(top_builddir)/pre-inst-env \
$(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)" \ $(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment