[cscope] update scripts for Android

This commit is contained in:
Mathieu Maret 2015-02-27 15:51:51 +01:00 committed by Mathieu Maret
parent 4f66f6ffc4
commit 7875e8925d
1 changed files with 3 additions and 2 deletions

View File

@ -1,13 +1,14 @@
DIR="dalvik device development frameworks hardware system "
DIR="dalvik device frameworks hardware libnativehelper system "
TMP=$(mktemp /tmp/XXXXX-cscope.files)
echo "$TMP"
for dir in $DIR;
do
echo "Looking for files in $dir"
find $PWD/$dir -name .git -prune -o -type f \( -iname '*.c' -o -iname '*.cc' -o -iname '*.cpp' -o -iname '*.h' -o -iname '*.hpp' -o -iname "*.mk" -o -iname "*.java" -o -iname "*.aidl" \) >> $TMP
find $PWD/$dir -name .git -prune -o -type f \( -iname '*.c' -o -iname '*.cc' -o -iname '*.cpp' -o -iname '*.h' -o -iname '*.hpp' -o -iname "*.mk" -o -iname "*.java" -o -iname "*.aidl" \) | egrep -v "/\.git$" >> $TMP
done
echo "generate cscope"
cscope -bkq -i $TMP
rm $TMP