mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
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>
This commit is contained in:
parent
f2c78150c3
commit
af5d5762f3
1 changed files with 7 additions and 2 deletions
9
Makefile
9
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:
|
||||
|
|
Loading…
Reference in a new issue