diff options
author | Perry Hung <iperry@gmail.com> | 2011-03-02 00:30:19 -0500 |
---|---|---|
committer | Perry Hung <iperry@gmail.com> | 2011-03-02 00:30:19 -0500 |
commit | 91f1b596c63407aaea9a1d17d31243c47b4f8d20 (patch) | |
tree | 7b994fdcba2f8b9fd619c51c0a81e3260e01de9c | |
parent | 4c8ab9d1717002d5faad9c2af6db6d12da761ec9 (diff) | |
download | librambutan-91f1b596c63407aaea9a1d17d31243c47b4f8d20.tar.gz librambutan-91f1b596c63407aaea9a1d17d31243c47b4f8d20.zip |
cscope: Find .S instead of .s files
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"` |