From: Philip Chimento Date: Tue, 29 Nov 2011 22:20:58 +0000 (+0100) Subject: Add silent rule to documentation Makefile X-Git-Tag: v0.9~53 X-Git-Url: https://git.stderr.nl/gitweb?p=projects%2Fchimara%2Fchimara.git;a=commitdiff_plain;h=1ad4eb4c0cf0542a29c86ddb07a07d386bc30ac1 Add silent rule to documentation Makefile Since newer versions of Gtk-Doc spew much less garbage onto the terminal, this fixes the rule that generates selectors.xml to be less verbose as well. --- diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index f18fc4b..7fd58a2 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -139,7 +139,7 @@ DISTCLEANFILES = version.xml $(DOC_MODULE)-overrides.txt dist_noinst_SCRIPTS = build-selector-table.pl selectors.xml: $(srcdir)/../../libchimara/gi_dispa.c - $(PERL) build-selector-table.pl $< > $@ + $(AM_V_GEN)$(PERL) build-selector-table.pl $< > $@ -include $(top_srcdir)/git.mk