[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Makefile: add file entry to ctags
|
From: |
Fei Wu |
|
Subject: |
[PATCH] Makefile: add file entry to ctags |
|
Date: |
Fri, 19 May 2023 11:27:16 +0800 |
It's more convenient to jump among files with --extra=+fq.
Signed-off-by: Fei Wu <fei2.wu@intel.com>
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 3c7d67142f..ffb3bcd4f4 100644
--- a/Makefile
+++ b/Makefile
@@ -239,8 +239,8 @@ ctags:
rm -f "$(SRC_PATH)/"tags, \
"CTAGS", "Remove old tags")
$(call quiet-command, \
- $(find-src-path) -exec ctags \
- -f "$(SRC_PATH)/"tags --append {} +, \
+ $(find-src-path) -exec ctags --extra=+fq \
+ -f "$(SRC_PATH)/"tags --append {} +, \
"CTAGS", "Re-index $(SRC_PATH)")
.PHONY: gtags
--
2.25.1
| [Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH] Makefile: add file entry to ctags,
Fei Wu <=