Changeset 4136


Ignore:
Timestamp:
Mar 21, 2019, 11:46:23 AM (6 years ago)
Author:
jgipsl
Message:

According to common agrement between icmc models, adapted to store folders created during compilation in build directory.

Location:
dynamico_lmdz/aquaplanet/IOIPSL
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • dynamico_lmdz/aquaplanet/IOIPSL/bld.cfg

    r3907 r4136  
    1111inc config.fcm
    1212
    13 %FFLAGS           %BASE_FFLAGS %COMPIL_FFLAGS
     13%FFLAGS              %BASE_FFLAGS %COMPIL_FFLAGS
     14%ROOT_PATH           $PWD
     15%SRC_PATH            %ROOT_PATH
    1416
    15 dir::root            $PWD
     17dir::root            %ROOT_PATH/build
    1618
    17 src::src        src
     19src::src             %SRC_PATH/src
    1820search_src           false
    1921bld::lib ioipsl
  • dynamico_lmdz/aquaplanet/IOIPSL/makeioipsl_fcm

    r4134 r4136  
    119119if [[ "$full_defined" == "TRUE" ]]
    120120then
    121   ./build --job $job --full
     121  ./build.sh --job $job --full
    122122else
    123   ./build --job $job
     123  ./build.sh --job $job
    124124fi
     125
     126# Link folders created during compilation to the base directory
     127rm -f bin lib inc
     128#ln -s build/bin bin
     129ln -s build/lib lib
     130ln -s build/inc inc
Note: See TracChangeset for help on using the changeset viewer.