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