Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libview
diff options
context:
space:
mode:
authorJavier Jardón <javierjc1982@gmail.com>2009-07-22 00:27:19 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@yandex.ru>2009-07-22 00:27:19 (GMT)
commit7b5e14ea3df691578a091c563be0081ff850a367 (patch)
tree830bdd24a2729f59dcc859cbc2513b0e64ea75d5 /libview
parent5b96694056a9bfbbeca84a44dfbe9eb82d684e10 (diff)
[build] Use AM_V_GEN to make custom commands silent
See bug #585355 for details
Diffstat (limited to 'libview')
-rw-r--r--libview/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/libview/Makefile.am b/libview/Makefile.am
index 0bf23d0..6b03cd8 100644
--- a/libview/Makefile.am
+++ b/libview/Makefile.am
@@ -71,23 +71,23 @@ BUILT_SOURCES = \
CLEANFILES = $(BUILT_SOURCES) stamp-ev-view-type-builtins.h
ev-view-marshal.h: $(srcdir)/ev-view-marshal.list
- $(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal > $@
+ $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal > $@
ev-view-marshal.c: $(srcdir)/ev-view-marshal.list
echo '#include <config.h>' > ev-view-marshal.c
- $(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal --body >> $@
+ $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal --body >> $@
ev-view-type-builtins.h: stamp-ev-view-type-builtins.h
@true
stamp-ev-view-type-builtins.h: ev-view-type-builtins.h.template $(INST_H_FILES)
- $(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbh \
+ $(AM_V_GEN)$(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbh \
&& (cmp -s xgen-etbh ev-view-type-builtins.h || cp xgen-etbh ev-view-type-builtins.h ) \
&& rm -f xgen-etbh \
&& echo timestamp > $(@F)
ev-view-type-builtins.c: ev-view-type-builtins.c.template $(INST_H_FILES)
- $(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbc \
+ $(AM_V_GEN)$(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbc \
&& (cmp -s xgen-etbc ev-view-type-builtins.c || cp xgen-etbc ev-view-type-builtins.c ) \
&& rm -f xgen-etbc