Changes between Initial Version and Version 1 of Ticket #867
- Timestamp:
- 08/15/20 02:26:53 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #867
- Property Resolution → Done
- Property Status new → closed
-
Ticket #867 – Description
initial v1 118 118 }}} 119 119 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 126 ifdef USE_DEBUG 127 BIN ?= $(BINDIR)/romsG 128 else 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 138 endif 139 }}} 140 141 120 142 * '''nesting.F:''' Added missing IF-directives in '''fine2coarse''' to avoid uncessary exchanges.