source: issm/trunk/doc/website/doc_c/createchtmldoc.sh@ 11

Last change on this file since 11 was 11, checked in by Mathieu Morlighem, 16 years ago

initial update of ISSM (copy of ice1)

  • Property svn:executable set to *
File size: 725 bytes
RevLine 
[11]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_DIR
8
9#Symlink the doxygen configuration file to root dir.
10ln -s "$ISSM_DIR/doc/website/doc_c/doxygen.config" ./doxygen.config
11ln -s "$ISSM_DIR/doc/website/doc_c/doxygenissm.css" ./doxygenissm.css
12ln -s "$ISSM_DIR/doc/website/doc_c/layoutissm.xml" ./layoutissm.xml
13ln -s "$ISSM_DIR/doc/website/doc_c/headerissm.html" ./headerissm.html
14ln -s "$ISSM_DIR/doc/website/doc_c/footerissm.html" ./footerissm.html
15
16#Run doxygen
17doxygen doxygen.config
18
19#Erase symlink
20rm doxygen.config doxygenissm.css layoutissm.xml headerissm.html footerissm.html
21
22#Use ISSM tabs
23cd $ISSM_DIR/doc/website/doc_c/
Note: See TracBrowser for help on using the repository browser.