coherent WaveBurst
Config Reference Guide
home
cWB_docker
git
cWB
config
DOXYGEN
listlibs.sh
Go to the documentation of this file.
1
#!/bin/sh
2
3
# Finding the system we are running
4
5
export
DOXYGEN_LDD
=
"ldd"
6
7
OS=`uname`
8
9
case
"$OS"
in
10
"Linux"
) export
DOXYGEN_LDD
=
"ldd"
11
;;
12
"Darwin"
)export
DOXYGEN_LDD
=
"otool -L"
13
;;
14
esac
15
16
# Transform collaboration diagram into list of libraries
17
18
echo
'#!/bin/sh'
> listofclass.sh
19
echo
''
>> listofclass.sh
20
grep -
s
"Collaboration diagram for"
$DOXYGEN_OUTPUT_DIRECTORY/html/
class
*.html | sed -e
"s/.html:.*$//"
| sed -e
"s/^.*html\/class/\.\/makelibs.sh /"
>> listofclass.sh
21
22
chmod +x ./listofclass.sh
23
./listofclass.sh
s
shift breaksw case s
Definition:
cwb_clchunk.csh:80
DOXYGEN_LDD
export DOXYGEN_LDD
Definition:
listlibs.sh:5