ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/doc/doxygen/doxygen.sh
Revision: 1.3
Committed: Thu Mar 1 14:31:06 2007 UTC (18 years, 2 months ago) by sashby
Content type: application/x-sh
Branch: MAIN
CVS Tags: V110p5
Changes since 1.2: +16 -16 lines
Log Message:
*** empty log message ***

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: doxygen.sh,v 1.2 2007/02/27 17:48:16 sashby Exp $
9 #
10 # Copyright: 2005 (C) Shaun ASHBY
11 #
12 #--------------------------------------------------------------------
13 if [[ -z ${DOXYGEN_ROOT} && -z ${GRAPHVIZ_ROOT} ]]; then
14 echo "Can't find dot or doxygen. Set envs DOXYGEN_ROOT and GRAPHVIZ_ROOT"
15 echo "to the base of their installations."
16 exit 1
17 else
18 export PATH=${DOXYGEN_ROOT}/bin:${GRAPHVIZ_ROOT}/bin:.:${PATH}
19 export LD_LIBRARY_PATH=${GRAPHVIZ_ROOT}/lib/graphviz
20 # Now run it:
21 echo "Running doxygen (`which doxygen`)"
22 echo "========================================================="
23 doxygen
24 echo "Finished at `date`"
25 echo
26 exit 0
27 fi