Changeset 313 for XIOS/trunk/make_xios


Ignore:
Timestamp:
02/18/12 22:43:24 (12 years ago)
Author:
ymipsl
Message:

Fortran attribut interface are now automaticaly generated.
Add get attribut fonctionnality from fortran.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/make_xios

    r301 r313  
    44compil_full="false" 
    55use_oasis="false" 
     6job="1" 
    67 
    78# Traitement de la ligne de commande 
     
    1718         "--debug") compil_mode="debug" ; shift ;; 
    1819         "--arch")  arch=$2     ; shift ; shift ;; 
    19          "--full")  compil_full="true"  ; shift ; shift ;; 
     20         "--full")  compil_full="true"  ; shift ;; 
    2021         "--use_oasis")  use_oasis="true"  ; shift  ;; 
    2122         "--doc")   doc="true"          ; shift ;; 
     23         "--job")   job=$2              ; shift ; shift ;; 
    2224         *)         code="$1"           ; shift ;; 
    2325      esac 
     
    117119if [[ "$compil_full" == "true" ]] 
    118120   then 
    119    fcm build -f 
     121   fcm build -f -j $job 
    120122else 
    121   fcm build 
     123  fcm build -j $job 
    122124fi 
    123125 
Note: See TracChangeset for help on using the changeset viewer.