mirror of
https://github.com/moparisthebest/sslh
synced 2024-12-04 06:52:20 -05:00
cscope: add cscope tagging support
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
parent
820e31bfc0
commit
7008a1ede4
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
|||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
*.o
|
*.o
|
||||||
|
cscope.*
|
||||||
echosrv
|
echosrv
|
||||||
sslh-fork
|
sslh-fork
|
||||||
sslh-select
|
sslh-select
|
||||||
|
6
Makefile
6
Makefile
@ -77,7 +77,7 @@ uninstall:
|
|||||||
update-rc.d sslh remove
|
update-rc.d sslh remove
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f tags
|
rm -f tags cscope.*
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f sslh-fork sslh-select echosrv $(MAN) *.o *.gcov *.gcno *.gcda *.png *.html *.css *.info
|
rm -f sslh-fork sslh-select echosrv $(MAN) *.o *.gcov *.gcno *.gcda *.png *.html *.css *.info
|
||||||
@ -85,6 +85,10 @@ clean:
|
|||||||
tags:
|
tags:
|
||||||
ctags --globals -T *.[ch]
|
ctags --globals -T *.[ch]
|
||||||
|
|
||||||
|
cscope:
|
||||||
|
-find . -name "*.[chS]" >cscope.files
|
||||||
|
-cscope -b -R
|
||||||
|
|
||||||
test:
|
test:
|
||||||
./t
|
./t
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user