blob: 7567e857f5e99141d67fcc848a1c9aca47806965 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# create ID file for the whole LibO tree. run it in toplevel dir
. ./Env.Host.sh
dirs="*/$INPATH/inc */$INPATH/misc/build `ls -d */* | sed -e '/\(clone\/\|\/\(common\|unxlng\|unxsol\|unxmac\|wntmsc\|Jamfile\|cscope\.\|tags\|ID\)\)\|^solver\//d'`"
mkid --lang-map=`dirname $0`/id-lang.map --include='C C++ asm perl make' --statistics $dirs
|