summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Staudinger <robsta@linux.intel.com>2012-02-13 13:59:03 +0100
committerRob Staudinger <robsta@linux.intel.com>2012-02-13 13:59:03 +0100
commitcb89d6783fe7dc588caf541a4f5812dd78f21280 (patch)
treec6ec3b696617a127be46ace76037310e147b52f4
parentfc134e704a4ad9fcf4de5e244a159257b1a8e265 (diff)
build: use $(AM_V_GET) consistently
There were a few instances of $(QUIET_GET) left from the very beginnings, when shave.m4 was used.
-rw-r--r--ytstenut/Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/ytstenut/Makefile.am b/ytstenut/Makefile.am
index 937165c..3509bf2 100644
--- a/ytstenut/Makefile.am
+++ b/ytstenut/Makefile.am
@@ -216,7 +216,7 @@ yts-enum-types.h: stamp-yts-enum-types.h
@true
stamp-yts-enum-types.h: $(libhdr_la_SOURCES) Makefile
- $(QUIET_GEN)( $(GLIB_MKENUMS) \
+ $(AM_V_GEN)( $(GLIB_MKENUMS) \
--template $(srcdir)/yts-enum-types.h.in \
$(libhdr_la_SOURCES) ) >> xgen-ceth && \
(cmp -s xgen-ceth yts-enum-types.h || cp xgen-ceth yts-enum-types.h) && \
@@ -224,7 +224,7 @@ stamp-yts-enum-types.h: $(libhdr_la_SOURCES) Makefile
echo timestamp > $(@F)
yts-enum-types.c: yts-enum-types.h
- $(QUIET_GEN)( $(GLIB_MKENUMS) \
+ $(AM_V_GEN)( $(GLIB_MKENUMS) \
--template $(srcdir)/yts-enum-types.c.in \
$(libhdr_la_SOURCES) ) >> xgen-cetc && \
cp xgen-cetc yts-enum-types.c && \
@@ -234,7 +234,7 @@ yts-marshal.h: stamp-marshal.h
@true
stamp-marshal.h: marshal.list
- $(QUIET_GEN)$(GLIB_GENMARSHAL) \
+ $(AM_V_GEN)$(GLIB_GENMARSHAL) \
--prefix=yts_marshal \
--header \
$(srcdir)/marshal.list > xgen-cmh \
@@ -243,7 +243,7 @@ stamp-marshal.h: marshal.list
&& echo timestamp > $(@F)
yts-marshal.c: yts-marshal.h Makefile
- $(QUIET_GEN)( echo "#include \"yts-marshal.h\"" ; \
+ $(AM_V_GEN)( echo "#include \"yts-marshal.h\"" ; \
$(GLIB_GENMARSHAL) \
--prefix=yts_marshal \
--body \
@@ -260,7 +260,7 @@ INCLUDES_FOR_GIR = -I..
if WITH_INTROSPECTION
Ytstenut-@YTS_API_VERSION@.gir: $(G_IR_SCANNER) libytstenut-@YTS_API_VERSION@.la
- $(QUIET_GEN) $(G_IR_SCANNER) -v \
+ $(AM_V_GEN) $(G_IR_SCANNER) -v \
--namespace=Ytstenut --nsversion=@YTS_API_VERSION@ \
--strip-prefix=Yts \
$(INCLUDES_FOR_GIR) \
@@ -288,7 +288,7 @@ typelibsdir = $(libdir)/girepository-1.0/
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
%.typelib: %.gir $(G_IR_COMPILER)
- $(QUIET_GEN) \
+ $(AM_V_GEN) \
LD_LIBRARY_PATH=.libs$${LD_LIBRARY_PATH:+:$$LD_LIBRARY_PATH} \
$(G_IR_COMPILER) \
--includedir=$(srcdir) \