From af661d40ea67b19214bc4c61f46c43211b75b8fa Mon Sep 17 00:00:00 2001 From: Peter Verthez Date: Sat, 26 Oct 2002 16:56:36 +0000 Subject: [PATCH] Make commands silent (except echo's). --- Makefile.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.inc b/Makefile.inc index fcd0a78..a9d0c87 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -12,12 +12,12 @@ define replace-VERSION endef %.tabgen.h: %.tab.h - if [ ! -r $(srcdir)/$@ ] ; \ + @if [ ! -r $(srcdir)/$@ ] ; \ then \ echo "Creating empty file for $@"; \ touch $(srcdir)/$@; \ fi - if diff $< $(srcdir)/$@ > /dev/null 2>&1; \ + @if diff $< $(srcdir)/$@ > /dev/null 2>&1; \ then \ : ; \ else \ -- 2.30.2