aboutsummaryrefslogtreecommitdiff
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
commit7ddc84481b4eebe337065a0219e3d8dc000791e5 (patch)
tree68f76ef1df2d664e6b97e92f47639437eb102fb6 /Makefile
parent62cb09ed6357eae58b0234fbc074c44e9c0aa5e5 (diff)
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"`