aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPerry Hung <iperry@gmail.com>2011-03-02 00:30:19 -0500
committerPerry Hung <iperry@gmail.com>2011-03-02 00:30:19 -0500
commit91f1b596c63407aaea9a1d17d31243c47b4f8d20 (patch)
tree7b994fdcba2f8b9fd619c51c0a81e3260e01de9c /Makefile
parent4c8ab9d1717002d5faad9c2af6db6d12da761ec9 (diff)
downloadlibrambutan-91f1b596c63407aaea9a1d17d31243c47b4f8d20.tar.gz
librambutan-91f1b596c63407aaea9a1d17d31243c47b4f8d20.zip
cscope: Find .S instead of .s files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 149f54a..01e1e72 100644
--- a/Makefile
+++ b/Makefile
@@ -153,7 +153,7 @@ debug:
cscope:
rm -rf *.cscope
- find . -name '*.[hcs]' -o -name '*.cpp' | xargs cscope -b
+ find . -name '*.[hcS]' -o -name '*.cpp' | xargs cscope -b
tags:
etags `find . -name "*.c" -o -name "*.cpp" -o -name "*.h"`