ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/doc/doxygen/doxygen.sh
Revision: 1.1
Committed: Thu Aug 11 16:46:46 2005 UTC (19 years, 9 months ago) by sashby
Content type: application/x-sh
Branch: MAIN
CVS Tags: V1_0_3-p4, forV1_1_0, v103_xml_071106, V1_0_3-p3, V1_0_3-p2, V110p3, V110p2, V110p1, V1_0_4p1, V1_0_3-p1, V1_0_3, V1_0_2, V1_0_2_p1
Branch point for: v103_with_xml, v103_branch
Log Message:
Added script to run doxygen.

File Contents

# Content
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 # Revision: $Id$
9 #
10 # Copyright: 2005 (C) Shaun ASHBY
11 #
12 #--------------------------------------------------------------------
13
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