source: issm/trunk/doxygen/doc_c/createchtmldoc.sh@ 9303

Last change on this file since 9303 was 9303, checked in by Mathieu Morlighem, 14 years ago

created doxygen

  • Property svn:executable set to *
File size: 543 bytes
Line 
1#!/bin/bash
2
3#remove previous doc
4rm -rf chtml
5
6#Go to root directory, because doxygen seems to have a problem running otherwise.
7cd $ISSM_TIER
8
9#Symlink the doxygen configuration file to root dir.
10ln -s "$ISSM_DIR/website/doc_c/doxygen.config" ./doxygen.config
11ln -s "$ISSM_DIR/website/doc_c/doxygenissm.css" ./doxygenissm.css
12ln -s "$ISSM_DIR/website/doc_c/layoutissm.xml" ./layoutissm.xml
13
14#Run doxygen
15$ISSM_TIER/externalpackages/doxygen/install/bin/doxygen doxygen.config
16
17#Erase symlink
18rm doxygen.config doxygenissm.css layoutissm.xml
Note: See TracBrowser for help on using the repository browser.