[eog] Add silent-rules support to several generator commands



commit 4261c97e565869ade8ec5a7154fcaa705b2401bd
Author: Felix Riemann <friemann gnome org>
Date:   Sun Aug 9 21:27:49 2009 +0200

    Add silent-rules support to several generator commands

 bindings/python/Makefile.am            |    4 ++--
 cut-n-paste/toolbar-editor/Makefile.am |    4 ++--
 plugins/Makefile.am                    |    2 +-
 src/Makefile.am                        |   10 +++++-----
 4 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index 8d4bce6..d57d5c9 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -26,10 +26,10 @@ eog_la_CFLAGS = 					\
 	$(AM_CFLAGS)
 
 $(top_builddir)/src/eog-enum-types.h:
-	cd $(top_builddir)/src && $(MAKE) eog-enum-types.h
+	$(AM_V_GEN)cd $(top_builddir)/src && $(MAKE) eog-enum-types.h
 
 eog.c: eog.defs eog.override $(top_builddir)/src/eog-enum-types.h
-	( cd $(srcdir) && $(PYGOBJECT_CODEGEN) \
+	$(AM_V_GEN)( cd $(srcdir) && $(PYGOBJECT_CODEGEN) \
 		--register $(PYGOBJECT_DEFSDIR)/gio-types.defs \
 		--register $(PYGTK_DEFSDIR)/pango-types.defs \
 		--register $(PYGTK_DEFSDIR)/gdk-types.defs \
diff --git a/cut-n-paste/toolbar-editor/Makefile.am b/cut-n-paste/toolbar-editor/Makefile.am
index f8411ca..c144f12 100644
--- a/cut-n-paste/toolbar-editor/Makefile.am
+++ b/cut-n-paste/toolbar-editor/Makefile.am
@@ -46,13 +46,13 @@ stamp_files = \
 eggmarshalers.h: stamp-eggmarshalers.h
 	@true
 stamp-eggmarshalers.h: eggmarshalers.list
-	$(GLIB_GENMARSHAL) --internal --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header > eggmarshalers.h \
+	$(AM_V_GEN)$(GLIB_GENMARSHAL) --internal --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header > eggmarshalers.h \
 	&& echo timestamp > $(@F)
 
 eggmarshalers.c: stamp-eggmarshalers.c
 	@true
 stamp-eggmarshalers.c: eggmarshalers.list
-	$(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header --body > eggmarshalers.c \
+	$(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header --body > eggmarshalers.c \
 	&& echo timestamp > $(@F)
 
 eggtypebuiltins.c: stamp-eggtypebuiltins.c
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 8db9d02..f2461e3 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -46,7 +46,7 @@ endif
 
 # Generate plugin info files
 
-%.eog-plugin: %.eog-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
+%.eog-plugin: %.eog-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(AM_V_GEN)$(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
 
 plugins_DATA = $(plugins_in_files:.eog-plugin.desktop.in=.eog-plugin)
 
diff --git a/src/Makefile.am b/src/Makefile.am
index 7be5fd9..f17050f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -197,16 +197,16 @@ BUILT_SOURCES = 			\
 	$(MARSHAL_OUTPUT)
 
 eog-enum-types.h: eog-enum-types.h.template $(INST_H_FILES) $(GLIB_MKENUMS)
-	(cd $(srcdir) && $(GLIB_MKENUMS) --template eog-enum-types.h.template $(INST_H_FILES)) > $@
+	$(AM_V_GEN)(cd $(srcdir) && $(GLIB_MKENUMS) --template eog-enum-types.h.template $(INST_H_FILES)) > $@
 
 eog-enum-types.c: eog-enum-types.c.template $(INST_H_FILES) $(GLIB_MKENUMS)
-	(cd $(srcdir) && $(GLIB_MKENUMS) --template eog-enum-types.c.template $(INST_H_FILES)) > $@
+	$(AM_V_GEN)(cd $(srcdir) && $(GLIB_MKENUMS) --template eog-enum-types.c.template $(INST_H_FILES)) > $@
 
 eog-marshal.h: eog-marshal.list $(GLIB_GENMARSHAL)
-	$(GLIB_GENMARSHAL) $< --header --internal --prefix=eog_marshal > $@
+	$(AM_V_GEN)$(GLIB_GENMARSHAL) $< --header --internal --prefix=eog_marshal > $@
 
 eog-marshal.c: eog-marshal.list $(GLIB_GENMARSHAL)
-	$(GLIB_GENMARSHAL) $< --body --header --prefix=eog_marshal > $@
+	$(AM_V_GEN)$(GLIB_GENMARSHAL) $< --body --header --prefix=eog_marshal > $@
 
 EXTRA_DIST = 				\
 	eog-enum-types.h.template	\
@@ -220,7 +220,7 @@ BUILT_SOURCES += eog-application-service.h
 EXTRA_DIST += eog-application-service.xml
 
 eog-application-service.h: eog-application-service.xml
-	dbus-binding-tool --prefix=eog_application --mode=glib-server --output=eog-application-service.h $<
+	$(AM_V_GEN)dbus-binding-tool --prefix=eog_application --mode=glib-server --output=eog-application-service.h $<
 
 endif
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]