From fec48f48687e9ff787d7054f74dd1285abf59e2c Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 29 Aug 2016 14:01:41 +0100 Subject: [PATCH] Makefile: add gtags target Use GNU Global to generate source code index. Signed-off-by: Wei Liu Reviewed-by: Juergen Gross Acked-by: Samuel Thibault --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a8ae67c..43dcbd6 100644 --- a/Makefile +++ b/Makefile @@ -190,3 +190,7 @@ tags: .PHONY: TAGS TAGS: $(all_sources) | xargs etags + +.PHONY: gtags +gtags: + $(all_sources) | gtags -f - -- 2.39.5