Warning, /verification/atm_gray/build/genmake_local is written in an unsupported language. File is not indexed.
view on githubraw file Latest commit 42875574 on 2024-11-26 20:20:16 UTC
4287557481 Jean*0001 #! /usr/bin/env bash
0002
0003 # This is the local options file for the "new" version of genmake
0004
0005 retvg=1
0006 retvc=1
0007 if test "x$OPTFILE" != x ; then
0008 basename $OPTFILE | grep gfortran > /dev/null 2>&1 ; retvg=$? ;
0009 basename $OPTFILE | grep cray > /dev/null 2>&1 ; retvc=$? ;
0010 fi
0011 if test $retvg = 0 ; then
0012 FFLAGS='-fdefault-real-8 -fdefault-double-8'
0013 echo " local gfortran setting: FFLAGS='$FFLAGS'"
0014 elif test $retvc = 0 ; then
0015 FFLAGS='-s real64'
0016 echo " local cce setting: FFLAGS='$FFLAGS'"
0017 else
0018 FFLAGS='-r8'
0019 echo " local default setting: FFLAGS='$FFLAGS'"
0020 fi
0021 ALWAYS_USE_F90=1