aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGilles Peskine <Gilles.Peskine@arm.com>2020-11-20 11:50:08 +0100
committerGilles Peskine <Gilles.Peskine@arm.com>2020-11-20 11:50:08 +0100
commit8346c7a9f07bd75fd7fabb2a32be2d6399742d4d (patch)
treedf454d4fdd31b1189f54945c670843712a8bb8db /Makefile
parentd0c780198d8b090ba8231d446a0f1eb3cf325096 (diff)
downloadmbedtls-8346c7a9f07bd75fd7fabb2a32be2d6399742d4d.zip
mbedtls-8346c7a9f07bd75fd7fabb2a32be2d6399742d4d.tar.gz
mbedtls-8346c7a9f07bd75fd7fabb2a32be2d6399742d4d.tar.bz2
Add abstract target names for index generation
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 663df86..f8d26d2 100644
--- a/Makefile
+++ b/Makefile
@@ -142,7 +142,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