diff options
author | Arun Isaac | 2021-09-07 16:07:16 +0530 |
---|---|---|
committer | Arun Isaac | 2021-09-07 16:07:16 +0530 |
commit | fe9d3755e4ce615477d23fa9233d83e450b10e80 (patch) | |
tree | aa838206b4ce1a9d08143f3796a77ccb269a3462 | |
parent | a348cb611d9b80974ed166a727af67b7d705745a (diff) | |
download | guile-xapian-fe9d3755e4ce615477d23fa9233d83e450b10e80.tar.gz guile-xapian-fe9d3755e4ce615477d23fa9233d83e450b10e80.tar.lz guile-xapian-fe9d3755e4ce615477d23fa9233d83e450b10e80.zip |
Makefile: Silence guild with GUILD prefix.
* Makefile.am (GUILD_GEN, GUILD_GEN_, GUILD_GEN_0, GUILD_GEN_1): New
variables.
(.scm.go): Use GUILD_GEN instead of AM_V_GEN.
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 6417ce9..fc533a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,6 +25,11 @@ EMACS_GEN_ = $(EMACS_GEN_$(AM_DEFAULT_VERBOSITY)) EMACS_GEN_0 = @echo " EMACS" $@; EMACS_GEN_1 = +GUILD_GEN = $(GUILD_GEN_$(V)) +GUILD_GEN_ = $(GUILD_GEN_$(AM_DEFAULT_VERBOSITY)) +GUILD_GEN_0 = @echo " GUILD " $@; +GUILD_GEN_1 = + # Xapian wrapper lib_LTLIBRARIES = libguilexapian.la @@ -58,7 +63,7 @@ CLEANFILES = $(GOBJECTS) GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat SUFFIXES = .scm .go .scm.go: - $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILD) compile $(GUILE_WARNINGS) -o "$@" "$<" + $(GUILD_GEN)$(top_builddir)/pre-inst-env $(GUILD) compile $(GUILE_WARNINGS) -o "$@" "$<" # Building xapian/xapian.scm additionally requires the libguilexapian # shared library. |