diff options
author | Alex Bennée | 2021-01-14 17:57:24 +0100 |
---|---|---|
committer | Alex Bennée | 2021-01-18 11:04:31 +0100 |
commit | af5d5762f347eb6efe590dc1f8eb59c3f29af9d1 (patch) | |
tree | 49e7ad8c9d5c7c567a6be70da59170ffdfd59765 /Makefile | |
parent | Makefile: wrap ctags in quiet-command calls (diff) | |
download | qemu-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-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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: |