projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2c7815
)
Makefile: wrap etags in quiet-command calls
author
Alex Bennée
<alex.bennee@linaro.org>
Thu, 14 Jan 2021 16:57:24 +0000
(16:57 +0000)
committer
Alex Bennée
<alex.bennee@linaro.org>
Mon, 18 Jan 2021 10:04:31 +0000
(10:04 +0000)
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>
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index bbab640b313a1d8ddacc37c48dfb363767272dd0..f7e9eb9f086b0d5bd73ae329e5b9877cd68388e1 100644
(file)
--- 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: