From 9858115f171dd942cf518ed62aa49dfa976edf27 Mon Sep 17 00:00:00 2001 From: "P. F. Chimento" Date: Sun, 1 May 2011 16:44:45 +0200 Subject: [PATCH] Make use of more Automake silent rules Add $(AM_V_GEN) to shut up Automake while generating some source files. --- interpreters/git/Makefile.am | 8 ++++---- interpreters/nitfol/Makefile.am | 12 ++++++------ libchimara/Makefile.am | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/interpreters/git/Makefile.am b/interpreters/git/Makefile.am index 8d5766d..89642c8 100644 --- a/interpreters/git/Makefile.am +++ b/interpreters/git/Makefile.am @@ -3,10 +3,10 @@ MAJOR = 1 MINOR = 2 PATCH = 8 version.h: Makefile.am - echo "// Automatically generated file -- do not edit!" > version.h - echo "#define GIT_MAJOR" $(MAJOR) >> version.h - echo "#define GIT_MINOR" $(MINOR) >> version.h - echo "#define GIT_PATCH" $(PATCH) >> version.h + $(AM_V_GEN)echo "// Automatically generated file -- do not edit!" > version.h + $(AM_V_at)echo "#define GIT_MAJOR" $(MAJOR) >> version.h + $(AM_V_at)echo "#define GIT_MINOR" $(MINOR) >> version.h + $(AM_V_at)echo "#define GIT_PATCH" $(PATCH) >> version.h pkglib_LTLIBRARIES = git.la BUILT_SOURCES = version.h diff --git a/interpreters/nitfol/Makefile.am b/interpreters/nitfol/Makefile.am index 82791cb..c1dca0f 100644 --- a/interpreters/nitfol/Makefile.am +++ b/interpreters/nitfol/Makefile.am @@ -32,22 +32,22 @@ BUILT_SOURCES = copying.c dbg_help.h startunix.c dbg_help.texi options.texi CLEANFILES = $(BUILT_SOURCES) nitfol.6 dbg_help.h: inform.y y2help.pl - $(PERL) $(srcdir)/y2help.pl $(srcdir)/inform.y + $(AM_V_GEN)$(PERL) $(srcdir)/y2help.pl $(srcdir)/inform.y dbg_help.texi: inform.y y2help.pl - $(PERL) $(srcdir)/y2help.pl $(srcdir)/inform.y + $(AM_V_GEN)$(PERL) $(srcdir)/y2help.pl $(srcdir)/inform.y copying.c: COPYING copying.awk - $(AWK) -f $(srcdir)/copying.awk <$(srcdir)/COPYING >copying.c + $(AM_V_GEN)$(AWK) -f $(srcdir)/copying.awk <$(srcdir)/COPYING >copying.c # nitfol.6: nitfol.opt opt2glkc.pl -# $(PERL) $(srcdir)/opt2glkc.pl -man $(srcdir)/nitfol.opt +# $(AM_V_GEN)$(PERL) $(srcdir)/opt2glkc.pl -man $(srcdir)/nitfol.opt options.texi: nitfol.opt opt2glkc.pl - $(PERL) $(srcdir)/opt2glkc.pl -info $(srcdir)/nitfol.opt + $(AM_V_GEN)$(PERL) $(srcdir)/opt2glkc.pl -info $(srcdir)/nitfol.opt startunix.c: nitfol.opt opt2glkc.pl - $(PERL) $(srcdir)/opt2glkc.pl -unix $(srcdir)/nitfol.opt + $(AM_V_GEN)$(PERL) $(srcdir)/opt2glkc.pl -unix $(srcdir)/nitfol.opt EXTRA_DIST = nitfol.opt crashme.inf test.inf diff --git a/libchimara/Makefile.am b/libchimara/Makefile.am index 54ee6b9..65b84bb 100644 --- a/libchimara/Makefile.am +++ b/libchimara/Makefile.am @@ -65,9 +65,9 @@ libchimara_include_HEADERS = \ BUILT_SOURCES = chimara-marshallers.c chimara-marshallers.h chimara-marshallers.c: chimara-marshallers.txt - glib-genmarshal --body --prefix=_chimara_marshal $< > $@ + $(AM_V_GEN)glib-genmarshal --body --prefix=_chimara_marshal $< > $@ chimara-marshallers.h: chimara-marshallers.txt - glib-genmarshal --header --prefix=_chimara_marshal $< > $@ + $(AM_V_GEN)glib-genmarshal --header --prefix=_chimara_marshal $< > $@ EXTRA_DIST = doc.c glkstart.c chimara-marshallers.txt -- 2.30.2