diff options
author | Christian Persch <chpe@gnome.org> | 2010-06-15 22:01:02 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-06-15 22:01:02 -0400 |
commit | 1b8ee5196eb8ed684b0ee0d2f0d26e6bd82656af (patch) | |
tree | 3e328d1cd43b66d9c57d1ff317d2d3ce1a81c23c /gmodule | |
parent | 062148ae9a4176a28c055a6e3505f4e5c9ff6313 (diff) |
Sprinkle some $(AM_V_GEN) around to make the build more silent.
Diffstat (limited to 'gmodule')
-rw-r--r-- | gmodule/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gmodule/Makefile.am b/gmodule/Makefile.am index 93a8473a9..b864d4219 100644 --- a/gmodule/Makefile.am +++ b/gmodule/Makefile.am @@ -10,7 +10,7 @@ AM_CPPFLAGS = \ -DG_DISABLE_DEPRECATED gmodule.def: gmodule.symbols - (echo -e EXPORTS; $(CPP) -P - <$(srcdir)/gmodule.symbols | sed -e '/^$$/d' -e 's/^/ /') > gmodule.def + $(AM_V_GEN) (echo -e EXPORTS; $(CPP) -P - <$(srcdir)/gmodule.symbols | sed -e '/^$$/d' -e 's/^/ /') > gmodule.def EXTRA_DIST += \ makefile.msc.in \ @@ -91,7 +91,7 @@ libgmodule_2_0_la_LIBADD = $(G_MODULE_LIBS_EXTRA) $(G_MODULE_LIBS) $(libglib) libgmodule_2_0_la_DEPENDENCIES = $(gmodule_win32_res) $(gmodule_def) gmodule-win32-res.o: gmodule.rc - $(WINDRES) gmodule.rc $@ + $(AM_V_GEN) $(WINDRES) gmodule.rc $@ gmodule-2.0.lib: libgmodule-2.0.la gmodule.def lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgmodule-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gmodule.def -out:$@ |