mirror of https://gitee.com/openkylin/qemu.git
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
9
Makefile
9
Makefile
|
@ -272,8 +272,13 @@ gtags:
|
||||||
|
|
||||||
.PHONY: TAGS
|
.PHONY: TAGS
|
||||||
TAGS:
|
TAGS:
|
||||||
rm -f "$(SRC_PATH)/"TAGS
|
$(call quiet-command, \
|
||||||
$(find-src-path) -exec etags -f "$(SRC_PATH)/"TAGS --append {} +
|
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
|
.PHONY: cscope
|
||||||
cscope:
|
cscope:
|
||||||
|
|
Loading…
Reference in New Issue