source: issm/branches/trunk-jpl-damage/externalpackages/doxygen/install.sh@ 12168

Last change on this file since 12168 was 12168, checked in by cborstad, 13 years ago

merged trunk-jpl into branch through revision 12167

File size: 335 bytes
Line 
1#!/bin/bash
2
3#Some cleanup
4rm -rf install
5
6#Download latest version
7svn co https://doxygen.svn.sourceforge.net/svnroot/doxygen/trunk install
8
9#Configure doxygen
10cd install && ./configure --prefix "$ISSM_DIR/externalpackages/doxygen/install"
11if [ -z $1 ]; then
12 make
13else
14 make -j $1
15fi
16
17#Install doxygen
18make install
19make install_docs
Note: See TracBrowser for help on using the repository browser.