Make use of $(AM_V_at) for silent commands
authorMarcel Holtmann <marcel@holtmann.org>
Sun, 23 Aug 2009 05:53:38 +0000 (22:53 -0700)
committerMarcel Holtmann <marcel@holtmann.org>
Sun, 23 Aug 2009 05:53:38 +0000 (22:53 -0700)
plugins/Makefile.am
src/Makefile.am

index d9e5f97..34bc58f 100644 (file)
@@ -221,14 +221,14 @@ EXTRA_DIST = polkit.policy
 MAINTAINERCLEANFILES = Makefile.in
 
 builtin.h:
-       @echo "" > $@
+       $(AM_V_at)echo "" > $@
        $(AM_V_GEN)list='$(builtin_modules)'; for i in $$list; \
          do echo "extern struct connman_plugin_desc __connman_builtin_$$i;" >> $@; done
-       @echo "" >> $@
-       @echo "static struct connman_plugin_desc *__connman_builtin[] = {" >> $@
-       @list='$(builtin_modules)'; for i in $$list; \
+       $(AM_V_at)echo "" >> $@
+       $(AM_V_at)echo "static struct connman_plugin_desc *__connman_builtin[] = {" >> $@
+       $(AM_V_at)list='$(builtin_modules)'; for i in $$list; \
          do echo "&__connman_builtin_$$i," >> $@; done
-       @echo "NULL };" >> $@
+       $(AM_V_at)echo "NULL };" >> $@
 
 connman.policy: polkit.policy
 if POLKIT
index 7df6478..4b99797 100644 (file)
@@ -53,9 +53,9 @@ connman.exp: $(connmand_OBJECTS)
        $(AM_V_GEN)nm -B *.o | awk '{ print $$3 }' | sort -u | grep -E -e '^connman_' > $@
 
 connman.ver: connman.exp
-       @echo "{ global:" > $@
+       $(AM_V_at)echo "{ global:" > $@
        $(AM_V_GEN)cat $< | sed -e "s/\(.*\)/\1;/" >> $@
-       @echo "local: *; };" >> $@
+       $(AM_V_at)echo "local: *; };" >> $@
 
 connman.conf: connman-dbus.conf connman-polkit.conf
 if POLKIT