Changeset 3793 for LMDZ6/trunk/makelmdz
- Timestamp:
- Jan 5, 2021, 10:54:11 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/makelmdz
r3574 r3793 28 28 cospv2=false 29 29 sisvat=false 30 inlandsis=false 30 31 rrtm=false 31 32 rrtm=false … … 122 123 [-cospv2 true/false] : compile with/without cospv2 package (default: false) 123 124 [-sisvat true/false] : compile with/without sisvat package (default: false) 125 [-inlandsis true/false] : compile with/without inlandsis package (default: false) 124 126 [-rrtm true/false] : compile with/without rrtm package (default: false) 125 127 [-dust true/false] : compile with/without the dust package from Boucher et al. (default: false) … … 192 194 "-sisvat") 193 195 sisvat="$2" ; shift ; shift ;; 194 196 197 "-inlandsis") 198 inlandsis="$2" ; shift ; shift ;; 199 195 200 "-rrtm") 196 201 rrtm="$2" ; shift ; shift ;; … … 518 523 src_dirs="$src_dirs phy${physique}/sisvat" 519 524 fi 525 526 527 if [[ "$inlandsis" == "true" ]] 528 then 529 CPP_KEY="$CPP_KEY CPP_INLANDSIS" 530 src_dirs="$src_dirs phy${physique}/inlandsis" 531 fi 532 520 533 521 534 if [[ "$rrtm" == "true" ]]
Note: See TracChangeset
for help on using the changeset viewer.