]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: Makefile: add "$(Q)" to clean, tags and cscope targets
authorWilly Tarreau <w@1wt.eu>
Mon, 19 Nov 2018 07:14:40 +0000 (08:14 +0100)
committerWilly Tarreau <w@1wt.eu>
Mon, 19 Nov 2018 07:18:49 +0000 (08:18 +0100)
These ones didn't have the quiet mode yet.

Makefile

index 16d9540d732bf9fb7c91a0c34629926c1a7d550b..ff8c32aa536bb1850b0a3b11956c16d21e537d9b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1014,17 +1014,17 @@ uninstall:
        $(Q)rm -f "$(DESTDIR)$(SBINDIR)"/haproxy
 
 clean:
-       rm -f *.[oas] src/*.[oas] ebtree/*.[oas] haproxy test .build_opts .build_opts.new
-       for dir in . src include/* doc ebtree; do rm -f $$dir/*~ $$dir/*.rej $$dir/core; done
-       rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
-       rm -f haproxy-$(VERSION) haproxy-$(VERSION)$(SUBVERS) nohup.out gmon.out
+       $(Q)rm -f *.[oas] src/*.[oas] ebtree/*.[oas] haproxy test .build_opts .build_opts.new
+       $(Q)for dir in . src include/* doc ebtree; do rm -f $$dir/*~ $$dir/*.rej $$dir/core; done
+       $(Q)rm -f haproxy-$(VERSION).tar.gz haproxy-$(VERSION)$(SUBVERS).tar.gz
+       $(Q)rm -f haproxy-$(VERSION) haproxy-$(VERSION)$(SUBVERS) nohup.out gmon.out
 
 tags:
-       find src include \( -name '*.c' -o -name '*.h' \) -print0 | \
+       $(Q)find src include \( -name '*.c' -o -name '*.h' \) -print0 | \
           xargs -0 etags --declarations --members
 
 cscope:
-       find src include -name "*.[ch]" -print | cscope -q -b -i -
+       $(Q)find src include -name "*.[ch]" -print | cscope -q -b -i -
 
 tar:   clean
        $(Q)ln -s . haproxy-$(VERSION)$(SUBVERS)