]> Dogcows Code - chaz/yoink/blob - cscope.make
no need to rebuild version.c every time
[chaz/yoink] / cscope.make
1 #!/bin/sh
2
3 current=`pwd`
4 cd /
5 find "$current" \
6 -iname "*.c" -o \
7 -iname "*.h" -o \
8 -iname "*.cc" -o \
9 -iname "*.hh" |sed '/ / s/^\(.*\)/"\1"/' >"$current/cscope.files"
10
11 cd "$current"
12
13 cscope -b -q
14
This page took 0.030117 seconds and 4 git commands to generate.