mirror of
https://github.com/RangeNetworks/openbts.git
synced 2025-10-22 23:32:00 +00:00
git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@6168 19bc5d8c-e614-43d4-8b26-e1612bc8e597
15 lines
312 B
Bash
15 lines
312 B
Bash
#DIRS="AsteriskConfig tools"
|
|
DIRS="CLI CommonLibs Control GPRS GSM Globals Peering
|
|
SGSNGGSN SIP SMS SR TRXManager TransceiverRAD1 apps"
|
|
# sqlite3 doc pat
|
|
|
|
files=""
|
|
for dir in $DIRS;do
|
|
files="$files $dir/*.h $dir/*.cpp"
|
|
done
|
|
|
|
eval echo $files
|
|
# Ignore PACKED keyword
|
|
eval ctags -I PACKED --extra=+fq $files
|
|
|