summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Bennée2021-01-14 17:57:24 +0100
committerAlex Bennée2021-01-18 11:04:31 +0100
commitaf5d5762f347eb6efe590dc1f8eb59c3f29af9d1 (patch)
tree49e7ad8c9d5c7c567a6be70da59170ffdfd59765 /Makefile
parentMakefile: wrap ctags in quiet-command calls (diff)
downloadqemu-af5d5762f347eb6efe590dc1f8eb59c3f29af9d1.tar.gz
qemu-af5d5762f347eb6efe590dc1f8eb59c3f29af9d1.tar.xz
qemu-af5d5762f347eb6efe590dc1f8eb59c3f29af9d1.zip
Makefile: wrap etags in quiet-command calls
For prettier output. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210114165730.31607-7-alex.bennee@linaro.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bbab640b31..f7e9eb9f08 100644
--- a/Makefile
+++ b/Makefile
@@ -272,8 +272,13 @@ gtags:
.PHONY: TAGS
TAGS:
- rm -f "$(SRC_PATH)/"TAGS
- $(find-src-path) -exec etags -f "$(SRC_PATH)/"TAGS --append {} +
+ $(call quiet-command, \
+ rm -f "$(SRC_PATH)/"TAGS, \
+ "TAGS", "Remove old $@")
+ $(call quiet-command, \
+ $(find-src-path) -exec etags \
+ -f "$(SRC_PATH)/"TAGS --append {} +, \
+ "TAGS", "Re-index $(SRC_PATH)")
.PHONY: cscope
cscope: