[PATCH 1/4] make: Add cscope target
Cyrill Gorcunov <[email protected]>
| Newsgroups | org.kernel.vger.trinity |
|---|---|
| Message-ID | <[email protected]> |
Just another source indexing system which might be preferred over tags. Signed-off-by: Cyrill Gorcunov <[email protected]> --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index b0bdb36..76f078b 100644 --- a/Makefile +++ b/Makefile @@ -125,3 +125,6 @@ coverity: cov-build --dir cov-int make tar czvf trinity-coverity.tgz cov-int +cscope: + @find . -name '*.[hcS]' ! -path './.*' -print > cscope.files + @cscope -bkqu -- 1.8.3.1