From 7008a1ede4ee40aed2695c3d9597e1b3e1c559d5 Mon Sep 17 00:00:00 2001 From: Jason Cooper Date: Mon, 5 Aug 2013 17:33:34 +0000 Subject: [PATCH] cscope: add cscope tagging support Signed-off-by: Jason Cooper --- .gitignore | 1 + Makefile | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fe98397..d9ab5e4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.swp *.swo *.o +cscope.* echosrv sslh-fork sslh-select diff --git a/Makefile b/Makefile index a937f82..32a2b56 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ uninstall: update-rc.d sslh remove distclean: clean - rm -f tags + rm -f tags cscope.* clean: rm -f sslh-fork sslh-select echosrv $(MAN) *.o *.gcov *.gcno *.gcda *.png *.html *.css *.info @@ -85,6 +85,10 @@ clean: tags: ctags --globals -T *.[ch] +cscope: + -find . -name "*.[chS]" >cscope.files + -cscope -b -R + test: ./t