[2759] | 1 | # configure.wrf |
---|
| 2 | # |
---|
| 3 | # This file was automatically generated by the configure script in the |
---|
| 4 | # top level directory. You may make changes to the settings in this |
---|
| 5 | # file but be aware they will be overwritten each time you run configure. |
---|
| 6 | # Ordinarily, it is necessary to run configure once, when the code is |
---|
| 7 | # first installed. |
---|
| 8 | # |
---|
| 9 | # To permanently change options, change the settings for your platform |
---|
| 10 | # in the file arch/configure.defaults then rerun configure. |
---|
| 11 | # |
---|
| 12 | SHELL = /bin/sh |
---|
| 13 | DEVTOP = `pwd` |
---|
| 14 | LIBINCLUDE = . |
---|
| 15 | .SUFFIXES: .F .i .o .f90 .c |
---|
| 16 | |
---|
| 17 | #### Get core settings from environment (set in compile script) |
---|
| 18 | #### Note to add a core, this has to be added to. |
---|
| 19 | |
---|
| 20 | COREDEFS = CONFIGURE_EM_CORE \ |
---|
| 21 | CONFIGURE_NMM_CORE -DNMM_MAX_DIM=2600 \ |
---|
| 22 | CONFIGURE_COAMPS_CORE \ |
---|
| 23 | CONFIGURE_DA_CORE \ |
---|
| 24 | CONFIGURE_EXP_CORE |
---|
| 25 | |
---|
| 26 | #### Single location for defining total number of domains. You need |
---|
| 27 | #### at least 1 + 2*(number of total nests). For example, 1 coarse |
---|
| 28 | #### grid + three fine grids = 1 + 2(3) = 7, so MAX_DOMAINS=7. |
---|
| 29 | |
---|
| 30 | MAX_DOMAINS = 21 |
---|
| 31 | |
---|
| 32 | #### DM buffer length for the configuration flags. |
---|
| 33 | |
---|
| 34 | CONFIG_BUF_LEN = 32768 |
---|
| 35 | |
---|
| 36 | |
---|
| 37 | ############################################################################## |
---|
| 38 | #### The settings in this section are defaults that may be overridden by the |
---|
| 39 | #### architecture-specific settings in the next section. |
---|
| 40 | ############################################################################## |
---|
| 41 | |
---|
| 42 | ############################################################################## |
---|
| 43 | #### NOTE: Do not modify these default values here. To override these |
---|
| 44 | #### values, make changes after "Architecture specific settings". |
---|
| 45 | ############################################################################## |
---|
| 46 | |
---|
| 47 | #### Native size (in bytes) of Fortran REAL data type on this architecture #### |
---|
| 48 | #### Note: to change real wordsize (for example, to promote REALs from |
---|
| 49 | #### 4-byte to 8-byte), modify the definition of RWORDSIZE in the |
---|
| 50 | #### section following "Architecture specific settings". Do not |
---|
| 51 | #### change NATIVE_RWORDSIZE as is it architecture-specific. |
---|
| 52 | NATIVE_RWORDSIZE = 4 |
---|
| 53 | |
---|
| 54 | #### Default sed command and script for Fortran source files #### |
---|
| 55 | #SED_FTN = sed -f $(WRF_SRC_ROOT_DIR)/arch/standard.sed |
---|
| 56 | SED_FTN = $(WRF_SRC_ROOT_DIR)/tools/standard.exe |
---|
| 57 | |
---|
| 58 | # Hack to work around $(PWD) not changing during OSF1 build. |
---|
| 59 | # $(IO_GRIB_SHARE_DIR) is reset during the OSF1 build only. |
---|
| 60 | IO_GRIB_SHARE_DIR = |
---|
| 61 | |
---|
| 62 | #### ESMF switches #### |
---|
| 63 | #### These are set up by Config.pl #### |
---|
| 64 | # switch to use separately installed ESMF library for coupling: 1==true |
---|
| 65 | ESMF_COUPLING = ESMFCOUPLING |
---|
| 66 | # select dependences on module_utility.o |
---|
| 67 | ESMF_MOD_DEPENDENCE = ESMFMODDEPENDENCE |
---|
| 68 | # select -I options for external/io_esmf vs. external/esmf_time_f90 |
---|
| 69 | ESMF_IO_INC = ESMFIOINC |
---|
| 70 | # select -I options for separately installed ESMF library, if present |
---|
| 71 | ESMF_MOD_INC = ESMFMODINC $(ESMF_IO_INC) |
---|
| 72 | # select cpp token for external/io_esmf vs. external/esmf_time_f90 |
---|
| 73 | ESMF_IO_DEFS = ESMFIODEFS |
---|
| 74 | # select build target for external/io_esmf vs. external/esmf_time_f90 |
---|
| 75 | ESMF_TARGET = ESMFTARGET |
---|
| 76 | |
---|
| 77 | ############################################################################## |
---|
| 78 | |
---|
| 79 | LIBWRFLIB = libwrflib.a |
---|
| 80 | |
---|
| 81 | |
---|
| 82 | #### Architecture specific settings #### |
---|
| 83 | |
---|
| 84 | # To enable over-decompostion with dmpar and dm+sm compiles, |
---|
| 85 | # add -DALLOW_OVERDECOMP to ARCH_LOCAL, below. (not recommended) |
---|
| 86 | |
---|