mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Makefile: wrap ctags 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-6-alex.bennee@linaro.org>
This commit is contained in:
parent
e405a3ebf5
commit
f2c78150c3
1 changed files with 7 additions and 2 deletions
9
Makefile
9
Makefile
|
@ -250,8 +250,13 @@ find-src-path = find "$(SRC_PATH)/" -path "$(SRC_PATH)/meson" -prune -o \( -name
|
|||
|
||||
.PHONY: ctags
|
||||
ctags:
|
||||
rm -f "$(SRC_PATH)/"tags
|
||||
$(find-src-path) -exec ctags -f "$(SRC_PATH)/"tags --append {} +
|
||||
$(call quiet-command, \
|
||||
rm -f "$(SRC_PATH)/"tags, \
|
||||
"CTAGS", "Remove old tags")
|
||||
$(call quiet-command, \
|
||||
$(find-src-path) -exec ctags \
|
||||
-f "$(SRC_PATH)/"tags --append {} +, \
|
||||
"CTAGS", "Re-index $(SRC_PATH)")
|
||||
|
||||
.PHONY: gtags
|
||||
gtags:
|
||||
|
|
Loading…
Reference in a new issue