From 1c54bc066cb8272bfc07961fd71d2fd9e3bcd639 Mon Sep 17 00:00:00 2001 Message-Id: <1c54bc066cb8272bfc07961fd71d2fd9e3bcd639.1715645872.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 5 Jun 2011 22:10:11 +0100 Subject: [PATCH] Makefile.am: Improve `silent-rules' output. Organization: Straylight/Edgeware From: Mark Wooding Introduce a separate `SUBST' line type for `confsubst'. --- Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 0649246..aaae6f4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -128,7 +128,10 @@ dist_sbin_SCRIPTS = ## Making substitutions. confsubst = $(top_srcdir)/config/confsubst -SUBST = $(AM_V_GEN)$(confsubst) +V_SUBST = $(V_SUBST_$(V)) +V_SUBST_ = $(V_SUBST_$(AM_DEFAULT_VERBOSITY)) +V_SUBST_0 = @echo " SUBST $@"; +SUBST = $(V_SUBST)$(confsubst) SUBSTITUTIONS = \ PACKAGE=$(PACKAGE) VERSION=$(VERSION) \ PYTHON=$(PYTHON) \ -- [mdw]