1 |
sashby |
1.1 |
#!/bin/sh
|
2 |
|
|
#____________________________________________________________________
|
3 |
|
|
# File: doxygen.sh
|
4 |
|
|
#____________________________________________________________________
|
5 |
|
|
#
|
6 |
|
|
# Author: Shaun ASHBY <Shaun.Ashby@cern.ch>
|
7 |
|
|
# Update: 2005-08-08 14:27:59+0200
|
8 |
muzaffar |
1.6 |
# Revision: $Id: doxygen.sh,v 1.5 2007/12/14 09:02:38 muzaffar Exp $
|
9 |
sashby |
1.1 |
#
|
10 |
|
|
# Copyright: 2005 (C) Shaun ASHBY
|
11 |
|
|
#
|
12 |
|
|
#--------------------------------------------------------------------
|
13 |
muzaffar |
1.5 |
|
14 |
|
|
# Setup for DOT:
|
15 |
|
|
dotbase=/afs/cern.ch/sw/lcg/external/graphviz/1.9
|
16 |
|
|
export LD_LIBRARY_PATH=$base/slc3_ia32_gcc323/lib/graphviz
|
17 |
|
|
|
18 |
|
|
|
19 |
|
|
# The doxygen executable (v1.41):
|
20 |
|
|
DOXYGEN=/usr/local/doxygen/bin/doxygen
|
21 |
|
|
|
22 |
|
|
# Modify the path to include DOT and the current dir (so that
|
23 |
|
|
# doxygen can find DoxyPerl.sh)
|
24 |
|
|
export PATH=${PATH}:$PATH:$dotbase/slc3_ia32_gcc323/bin:.
|
25 |
|
|
|
26 |
|
|
# Now run it:
|
27 |
|
|
echo "Running $DOXYGEN in `pwd`"
|
28 |
|
|
echo "========================================================="
|
29 |
|
|
|
30 |
|
|
$DOXYGEN
|
31 |
|
|
|
32 |
|
|
echo "Finished at `date`"
|
33 |
|
|
echo
|