diff options
author | Xan Lopez <xan@gnome.org> | 2009-08-11 03:26:30 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-08-11 03:26:30 +0800 |
commit | 850d301f9da4691774578c49e63353d1580a42f1 (patch) | |
tree | 4ec1ac2a466267113b012ec525a27c8263c8a36b /lib/egg | |
parent | 51cb85f8bed28408d4e1f962bc5f48facde5344f (diff) | |
download | gsoc2013-epiphany-850d301f9da4691774578c49e63353d1580a42f1.tar gsoc2013-epiphany-850d301f9da4691774578c49e63353d1580a42f1.tar.gz gsoc2013-epiphany-850d301f9da4691774578c49e63353d1580a42f1.tar.bz2 gsoc2013-epiphany-850d301f9da4691774578c49e63353d1580a42f1.tar.lz gsoc2013-epiphany-850d301f9da4691774578c49e63353d1580a42f1.tar.xz gsoc2013-epiphany-850d301f9da4691774578c49e63353d1580a42f1.tar.zst gsoc2013-epiphany-850d301f9da4691774578c49e63353d1580a42f1.zip |
Prefix noisy commands with AM_V_GEN
Diffstat (limited to 'lib/egg')
-rw-r--r-- | lib/egg/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/egg/Makefile.am b/lib/egg/Makefile.am index cc1502ad8..c49fb17d9 100644 --- a/lib/egg/Makefile.am +++ b/lib/egg/Makefile.am @@ -61,19 +61,19 @@ stamp_files = \ eggmarshalers.h: stamp-eggmarshalers.h @true stamp-eggmarshalers.h: eggmarshalers.list - $(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header > eggmarshalers.h \ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --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 Makefile @true stamp-eggtypebuiltins.c: Makefile $(EGGHEADERS) - $(GLIB_MKENUMS) \ + $(AM_V_GEN) $(GLIB_MKENUMS) \ --fhead "#include <config.h>\n\n" \ --fhead "#include \"eggtypebuiltins.h\"\n\n" \ --fprod "\n/* enumerations from \"@filename@\" */" \ @@ -94,7 +94,7 @@ stamp-eggtypebuiltins.c: Makefile $(EGGHEADERS) eggtypebuiltins.h: stamp-eggtypebuiltins.h Makefile @true stamp-eggtypebuiltins.h: Makefile $(EGGHEADERS) - $(GLIB_MKENUMS) \ + $(AM_V_GEN) $(GLIB_MKENUMS) \ --fhead "#ifndef __EGGTYPEBUILTINS_H__\n" \ --fhead "#define __EGGTYPEBUILTINS_H__ 1\n\n" \ --fhead "#include <glib-object.h>\n\n" \ |