diff --git a/scripts/generate_cscopefile.sh b/scripts/generate_cscopefile.sh index e351f48..e4088b4 100755 --- a/scripts/generate_cscopefile.sh +++ b/scripts/generate_cscopefile.sh @@ -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