Message ID | dcc21753a1bf975fc97c5f4c8d089e1fb4b00dd2.1375131816.git.jason@lakedaemon.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/.gitignore b/.gitignore index c3b59bf..ac4198c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.sh *.o *.bin +cscope.* matcher uImage input/zImage diff --git a/Makefile b/Makefile index 5ad5fc0..daeafa4 100644 --- a/Makefile +++ b/Makefile @@ -43,3 +43,9 @@ uImage: matcher.bin clean: rm -fr matcher.bin matcher *.o uImage +distclean: + rm -fr cscope.* + +cscope: + -find . -name "*.[chS]" >cscope.files + -cscope -b -R
Signed-off-by: Jason Cooper <jason@lakedaemon.net> --- .gitignore | 1 + Makefile | 6 ++++++ 2 files changed, 7 insertions(+)