From f9a7f5feca270302148967ae2d99c2b8af4a3c98 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 9 Nov 2020 21:21:31 +0100 Subject: [PATCH 1/3] Add a target for the cscope index Signed-off-by: Gilles Peskine --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 24d529a54..cf250addb 100644 --- a/Makefile +++ b/Makefile @@ -131,3 +131,5 @@ TAGS: $(C_SOURCE_FILES) etags -o $@ $(C_SOURCE_FILES) GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES) ls $(C_SOURCE_FILES) | gtags -f - --gtagsconf .globalrc +cscope.in.out cscope.po.out cscope.out: $(C_SOURCE_FILES) + cscope -bq -u -Iinclude -Ilibrary $(patsubst %,-I%,$(wildcard 3rdparty/*/include)) -Itests/include $(C_SOURCE_FILES) From bc7379022fe3d3ea8a7172f4c66965d2de26ea50 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 9 Nov 2020 21:28:15 +0100 Subject: [PATCH 2/3] Ignore cscope index Signed-off-by: Gilles Peskine --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 789f57ee0..5fb0bdebf 100644 --- a/.gitignore +++ b/.gitignore @@ -40,4 +40,5 @@ massif-* /GSYMS /GTAGS /TAGS +/cscope*.out /tags From 25dee5df1a1014322e1cebcfe5c519fd9c5e0058 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Fri, 20 Nov 2020 11:50:08 +0100 Subject: [PATCH 3/3] Add abstract target names for index generation Signed-off-by: Gilles Peskine --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index cf250addb..3942fbd3d 100644 --- a/Makefile +++ b/Makefile @@ -129,7 +129,10 @@ tags: $(C_SOURCE_FILES) $(CTAGS) $@ $(C_SOURCE_FILES) TAGS: $(C_SOURCE_FILES) etags -o $@ $(C_SOURCE_FILES) +global: GPATH GRTAGS GSYMS GTAGS GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES) ls $(C_SOURCE_FILES) | gtags -f - --gtagsconf .globalrc +cscope: cscope.in.out cscope.po.out cscope.out cscope.in.out cscope.po.out cscope.out: $(C_SOURCE_FILES) cscope -bq -u -Iinclude -Ilibrary $(patsubst %,-I%,$(wildcard 3rdparty/*/include)) -Itests/include $(C_SOURCE_FILES) +.PHONY: cscope global