From c24b4fe9bdc6a64553d3a41163c915549b2c0395 Mon Sep 17 00:00:00 2001 From: Ulya Trofimovich Date: Tue, 1 Dec 2015 12:42:42 +0000 Subject: [PATCH] Makefile.am: use 'AM_V_GEN' prefix to report custom rules. --- re2c/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/re2c/Makefile.am b/re2c/Makefile.am index ad0fd6cf..36b5da7e 100644 --- a/re2c/Makefile.am +++ b/re2c/Makefile.am @@ -188,7 +188,7 @@ CLEANFILES = \ $(DOC) $(AUTOGEN_PARSER): $(CUSTOM_PARSER) - @if test $(BISON) = "no"; \ + $(AM_V_GEN) if test $(BISON) = "no"; \ then \ cp $(top_srcdir)/$(BOOTSTRAP_PARSER) $@ && \ cp $(top_srcdir)/$(BOOTSTRAP_PARSER_HDR) $(AUTOGEN_PARSER_HDR); \ @@ -204,7 +204,7 @@ $(AUTOGEN_PARSER): $(CUSTOM_PARSER) $(AUTOGEN_LEX): $(AUTOGEN_PARSER) $(BOOTSTRAP_PARSER): $(CUSTOM_PARSER) - @test $(BISON) = "no" || \ + $(AM_V_GEN) test $(BISON) = "no" || \ $(BISON) \ --output=$(top_srcdir)/$@ \ --defines=$(top_srcdir)/$(BOOTSTRAP_PARSER_HDR) \ @@ -212,7 +212,7 @@ $(BOOTSTRAP_PARSER): $(CUSTOM_PARSER) $(top_srcdir)/$(CUSTOM_PARSER); .re.cc: - @if test -x $(RE2C); \ + $(AM_V_GEN) if test -x $(RE2C); \ then \ $(top_builddir)/$(RE2C) $(RE2CFLAGS) -o $@ $< && \ cp $@ $(top_srcdir)/bootstrap/$@; \ -- 2.40.0