From 9e5cc8d63ae539a9aa58858a1d9fa3b0b0e74eee Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Fri, 18 Oct 2013 16:26:39 +0200 Subject: [PATCH] MINOR: Makefile: provide cscope rule "make cscope" builds tags for cscope. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 0529e8937d..2acaee4aae 100644 --- a/Makefile +++ b/Makefile @@ -717,6 +717,9 @@ tags: find src include \( -name '*.c' -o -name '*.h' \) -print0 | \ xargs -0 etags --declarations --members +cscope: + find src include -name "*.[ch]" -print | cscope -q -b -i - + tar: clean ln -s . haproxy-$(VERSION) tar --exclude=haproxy-$(VERSION)/.git \ -- 2.47.3