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>
diff --git a/Makefile b/Makefile
index 0c509a7..bbab640 100644
--- a/Makefile
+++ b/Makefile
@@ -250,8 +250,13 @@
.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: