Name of user not set #1005756 has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85936?usp=email )
Change subject: Makefile: Add ctags target in Makefile ......................................................................
Makefile: Add ctags target in Makefile
Add 'ctags' target. we can see that 'make help' says ... ctags / ctags-project - Make ctags file for all of coreboot or current board ... but, Makefile have only 'ctags-project' target.
Change-Id: Ie554892bcb072d773babf745d7756630327d2975 Signed-off-by: melongmelong knw0507@naver.com --- M Makefile 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/85936/1
diff --git a/Makefile b/Makefile index 5e45e16..49c19cb 100644 --- a/Makefile +++ b/Makefile @@ -486,6 +486,9 @@ cat $(obj)/project_filelist.txt | \ xargs ctags -o tags
+ctags: + ctags -R + cscope-project: clean-cscope $(obj)/project_filelist.txt cat $(obj)/project_filelist.txt | xargs cscope -b