From b080d0680c0aac5dad408a5711d65e4606295cb2 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 5 Mar 2019 16:19:59 -0700 Subject: Makefile: add cscope target Signed-off-by: Jens Axboe --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 547137d..fe4fcb4 100644 --- a/Makefile +++ b/Makefile @@ -31,10 +31,13 @@ install: @$(MAKE) -C src install prefix=$(DESTDIR)$(prefix) includedir=$(DESTDIR)$(includedir) libdir=$(DESTDIR)$(libdir) clean: - @rm -f config-host.mak config-host.h + @rm -f config-host.mak config-host.h cscope.out @$(MAKE) -C src clean @$(MAKE) -C test clean +cscope: + @cscope -b -R + tag-archive: @git tag $(TAG) -- cgit