|
Last change
on this file since 12168 was 12168, checked in by cborstad, 14 years ago |
|
merged trunk-jpl into branch through revision 12167
|
|
File size:
335 bytes
|
| Line | |
|---|
| 1 | #!/bin/bash
|
|---|
| 2 |
|
|---|
| 3 | #Some cleanup
|
|---|
| 4 | rm -rf install
|
|---|
| 5 |
|
|---|
| 6 | #Download latest version
|
|---|
| 7 | svn co https://doxygen.svn.sourceforge.net/svnroot/doxygen/trunk install
|
|---|
| 8 |
|
|---|
| 9 | #Configure doxygen
|
|---|
| 10 | cd install && ./configure --prefix "$ISSM_DIR/externalpackages/doxygen/install"
|
|---|
| 11 | if [ -z $1 ]; then
|
|---|
| 12 | make
|
|---|
| 13 | else
|
|---|
| 14 | make -j $1
|
|---|
| 15 | fi
|
|---|
| 16 |
|
|---|
| 17 | #Install doxygen
|
|---|
| 18 | make install
|
|---|
| 19 | make install_docs
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.