Changes between Initial Version and Version 1 of Ticket #867


Ignore:
Timestamp:
08/15/20 02:26:53 (4 years ago)
Author:
arango
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #867

    • Property ResolutionDone
    • Property Status newclosed
  • Ticket #867 – Description

    initial v1  
    118118}}}
    119119
     120* '''makefile:''' The ROMS executable logically so the BIN macro value can be overwritten in the build script.
     121 {{{
     122#--------------------------------------------------------------------------
     123#  Set ROMS/TOMS executable file name.
     124#--------------------------------------------------------------------------
     125
     126ifdef USE_DEBUG
     127  BIN ?= $(BINDIR)/romsG
     128else
     129 ifdef USE_MPI
     130   BIN ?= $(BINDIR)/romsM
     131 else
     132  ifdef USE_OpenMP
     133    BIN ?= $(BINDIR)/romsO
     134  else
     135    BIN ?= $(BINDIR)/romsS
     136  endif
     137 endif
     138endif
     139}}}
     140
     141
    120142* '''nesting.F:'''  Added missing IF-directives in '''fine2coarse''' to avoid uncessary exchanges.