New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 2057 for branches – NEMO

Changeset 2057 for branches


Ignore:
Timestamp:
2010-08-13T11:49:34+02:00 (14 years ago)
Author:
cetlod
Message:

Update fait* scripts to take into account OFFLINE reorganisation, see ticket:701

Location:
branches/DEV_r2006_merge_TRA_TRC/UTIL
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DEV_r2006_merge_TRA_TRC/UTIL/fait_AA_make

    r2033 r2057  
    585585echo '   if [ -n "$$check" ] ; then  \' 
    586586echo '   echo "   use TOP_SRC files"                ; \' 
    587 echo '      \$(RM) trdmld_trc.F90           ; \' 
     587echo '      \$(RM) trdmod_trc.F90                  ; \' 
    588588echo '      ln -sf ../TOP_SRC/*.[Ffh]90          . ; \' 
    589 echo '      ln -sf ../TOP_SRC/*/*.[Ffh]90      . ; \' 
     589echo '      ln -sf ../TOP_SRC/*/*.[Ffh]90        . ; \' 
    590590echo '  fi ' 
    591591echo '   @check=`grep OFF_SRC .config`              ; \' 
    592592echo '   if [ -n "$$check" ] ; then                   \' 
    593593echo '   echo "   use OFF_SRC files"                ; \' 
     594echo '      \$(RM) domain.F90                      ; \' 
     595echo '      \$(RM) dommsk.F90                      ; \' 
     596echo '      \$(RM) stpctl.F90                      ; \' 
     597echo '      \$(RM) istate.F90                      ; \' 
     598echo '      \$(RM) opa.F90                         ; \' 
    594599echo '      ln -sf ../OFF_SRC/*.[Ffh]90          . ; \' 
    595 echo '      ln -sf ../OFF_SRC/*/*.[Ffh]90        . ; \' 
    596600echo '  fi ' 
    597601echo '   @check=`grep NST_SRC .config`              ; \' 
  • branches/DEV_r2006_merge_TRA_TRC/UTIL/fait_config

    r2033 r2057  
    3939set -A DIR_GYRE_LOBSTER OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC 
    4040set -A DIR_ORCA2_LIM_PISCES OPA_SRC LIM_SRC_2 C1D_SRC TOP_SRC NST_SRC  
    41 set -A DIR_ORCA2_OFF_PISCES OFF_SRC TOP_SRC 
     41set -A DIR_ORCA2_OFF_PISCES OPA_SRC OFF_SRC LIM_SRC_2 C1D_SRC TOP_SRC 
    4242set -A DIR_POMME OPA_SRC LIM_SRC_2 C1D_SRC  
    4343set -A DIR_IPSLCM5 OPA_SRC LIM_SRC_2 C1D_SRC 
     
    113113       
    114114      elif [ "${TAB[i]}" = "TOP_SRC" ]; then 
    115      [ -f  trdmld_trc.F90 ] && \rm trdmld_trc.F90                     
     115     [ -f trdmod_trc.F90 ] && \rm trdmod_trc.F90  
    116116     ln -sf ../TOP_SRC/*.[Ffh]90 .        
    117117     ln -sf ../TOP_SRC/*/*.[Ffh]90 . 
     
    127127       
    128128      elif [ "${TAB[i]}" = "OFF_SRC" ]; then   
     129     [ -f domain.F90 ] && \rm domain.F90  
     130     [ -f dommsk.F90 ] && \rm dommsk.F90  
     131     [ -f stpctl.F90 ] && \rm stpctl.F90  
     132     [ -f istate.F90 ] && \rm istate.F90  
     133     [ -f opa.F90    ] && \rm opa.F90  
    129134     ln -sf ../OFF_SRC/*.[Ffh]90 . 
    130      ln -sf ../OFF_SRC/*/*.[Ffh]90 . 
    131135      fi 
    132136      let i=$i+1 
Note: See TracChangeset for help on using the changeset viewer.