|
Last change
on this file since 3833 was
3810,
checked in by ymipsl, 11 years ago
|
|
Add DYNAMICO in aquaplanet configuration
YM
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
|
|
File size:
554 bytes
|
| Line | |
|---|
| 1 | #!/bin/bash |
|---|
| 2 | |
|---|
| 3 | DOC=$PWD |
|---|
| 4 | |
|---|
| 5 | cd .. |
|---|
| 6 | svn info --xml | grep revision | head -n 1 > revinfo.xml |
|---|
| 7 | sed -i "s/>//g" revinfo.xml |
|---|
| 8 | . revinfo.xml |
|---|
| 9 | REV="r$revision" |
|---|
| 10 | rm revinfo.xml |
|---|
| 11 | |
|---|
| 12 | cd $DOC |
|---|
| 13 | DOXYFILE="Doxyfile.$REV" |
|---|
| 14 | EXCL="src\/dimensions.f90 src\/geometry.f90 src\/trace.f90 src\/mpipara.f90" |
|---|
| 15 | |
|---|
| 16 | sed "s/rXXX/$REV/g" Doxyfile > $DOXYFILE |
|---|
| 17 | sed -i "s/EXCLUDED_F90/$EXCL/g" $DOXYFILE |
|---|
| 18 | |
|---|
| 19 | rm -rf src html latex |
|---|
| 20 | mkdir src |
|---|
| 21 | cp ../src/*.f90 ../ppsrc/src/*.f90 src |
|---|
| 22 | doxygen $DOXYFILE |
|---|
| 23 | rm $DOXYFILE |
|---|
| 24 | |
|---|
| 25 | set -x |
|---|
| 26 | time lftp dubos@ftp.lmd.polytechnique.fr -e "mirror -R html perso/DYNAMICO/$REV ; exit" |
|---|
Note: See
TracBrowser
for help on using the repository browser.