c1030a6bf9
* make id: create GNU idutils symbol lookup index * make tags: create ctags index file (c++, java, html) * make docs: create doxygen-style documentation below docs/
8 lines
349 B
Bash
Executable file
8 lines
349 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# create ID file for the whole LibO tree. run it in toplevel dir
|
|
|
|
. ./*.Set.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
|