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 = -DEM_CORE=$(WRF_EM_CORE) \ |
---|
21 | -DNMM_CORE=$(WRF_NMM_CORE) -DNMM_MAX_DIM=2600 \ |
---|
22 | -DCOAMPS_CORE=$(WRF_COAMPS_CORE) \ |
---|
23 | -DDA_CORE=$(WRF_DA_CORE) \ |
---|
24 | -DEXP_CORE=$(WRF_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 = 0 |
---|
66 | # select dependences on module_utility.o |
---|
67 | ESMF_MOD_DEPENDENCE = $(WRF_SRC_ROOT_DIR)/external/esmf_time_f90/module_utility.o |
---|
68 | # select -I options for external/io_esmf vs. external/esmf_time_f90 |
---|
69 | ESMF_IO_INC = -I$(WRF_SRC_ROOT_DIR)/external/esmf_time_f90 |
---|
70 | # select -I options for separately installed ESMF library, if present |
---|
71 | ESMF_MOD_INC = $(ESMF_IO_INC) |
---|
72 | # select cpp token for external/io_esmf vs. external/esmf_time_f90 |
---|
73 | ESMF_IO_DEFS = |
---|
74 | # select build target for external/io_esmf vs. external/esmf_time_f90 |
---|
75 | ESMF_TARGET = esmf_time |
---|
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 | |
---|
87 | # Settings for Linux x86_64 i486 i586 i686, ifort compiler with icc (dmpar) |
---|
88 | # |
---|
89 | # By default, some files are compiled without optimizations to speed up compilation. Removing |
---|
90 | # respective makefile rules in the end of this file will result in longer compilation time, and, possibly |
---|
91 | # Out Of Memory messages, but might produce binaries which are substantially faster. |
---|
92 | # |
---|
93 | # Please visit http://www.intel.com/support/performancetools/sb/cs-028607.htm |
---|
94 | # for latest info on how to build WRF with Intel compilers. |
---|
95 | # |
---|
96 | # If you got Out Of Memory message, there are several options: |
---|
97 | # 1. Check your memory limits (ulimit -a), possibly increasing swap partitions size. |
---|
98 | # 2. Remove any debugging flags (-g, -check, -traceback). |
---|
99 | # 3. Force the problematic file to be compiled with less optimizations (see examples at the |
---|
100 | # end of this file), try -no-ip compiler flag. |
---|
101 | # |
---|
102 | # This configuration is aimed at accuracy. To improve performance (at the expence of accuracy) you might |
---|
103 | # consider removing '-fp-model precise' flag from FCBASEOPTS. This enables non value-safe optimizations. |
---|
104 | # Another option is to add '-ftz' flag, which flushes denormal results to zero when the application is in |
---|
105 | # the gradual underflow mode. It may improve performance if the denormal values are not critical to the |
---|
106 | # behavior of your workload. To further improve performance, add suitable vectorization options for your |
---|
107 | # processor to FCOPTIM (see ifort manpage). |
---|
108 | # |
---|
109 | # If you have Intel MPI installed and wish to use instead, make the |
---|
110 | # following changes to settings below: |
---|
111 | # DM_FC = mpiifort |
---|
112 | # DM_CC = mpiicc |
---|
113 | # and source bin64/mpivars.sh file from your Intel MPI installation |
---|
114 | # before the build. |
---|
115 | |
---|
116 | DMPARALLEL = 1 |
---|
117 | OMPCPP = # -D_OPENMP |
---|
118 | OMP = # -openmp -fpp -auto |
---|
119 | SFC = ifort |
---|
120 | SCC = icc |
---|
121 | DM_FC = /usr/lib64/openmpi/1.6.5-ifort/bin//mpif90 -f90=$(SFC) |
---|
122 | DM_CC = /usr/lib64/openmpi/1.6.5-ifort/bin//mpicc -DMPI2_SUPPORT -cc=$(SCC) -DMPI2_SUPPORT |
---|
123 | FC = $(DM_FC) |
---|
124 | CC = $(DM_CC) -DFSEEKO64_OK |
---|
125 | LD = $(FC) |
---|
126 | RWORDSIZE = 8 #$(NATIVE_RWORDSIZE) |
---|
127 | PROMOTION = -i4 -real-size 64 |
---|
128 | ARCH_LOCAL = -DNEWPHYS -DNONSTANDARD_SYSTEM_FUNC |
---|
129 | CFLAGS_LOCAL = -w -O3 -mcmodel=large -shared-intel -ip |
---|
130 | LDFLAGS_LOCAL = -ip |
---|
131 | CPLUSPLUSLIB = |
---|
132 | ESMF_LDFLAG = $(CPLUSPLUSLIB) |
---|
133 | FCOPTIM = -O3 -mcmodel=large -shared-intel |
---|
134 | FCREDUCEDOPT = $(FCOPTIM) |
---|
135 | FCNOOPT = -O0 |
---|
136 | FCDEBUG = # -g $(FCNOOPT) -traceback |
---|
137 | FORMAT_FIXED = -FI |
---|
138 | FORMAT_FREE = -FR |
---|
139 | FCSUFFIX = |
---|
140 | BYTESWAPIO = -convert big_endian |
---|
141 | FCBASEOPTS = -w -ftz -align all -fno-alias -fp-model precise $(FCDEBUG) $(FORMAT_FREE) $(BYTESWAPIO) |
---|
142 | MODULE_SRCH_FLAG = |
---|
143 | TRADFLAG = -traditional |
---|
144 | CPP = /lib/cpp -P |
---|
145 | AR = ar |
---|
146 | ARFLAGS = ru |
---|
147 | M4 = m4 |
---|
148 | RANLIB = ranlib |
---|
149 | CC_TOOLS = $(SCC) |
---|
150 | |
---|
151 | ########################################################### |
---|
152 | ###################### |
---|
153 | |
---|
154 | ARCHFLAGS = $(COREDEFS) -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=$(RWORDSIZE) -DLWORDSIZE=4 \ |
---|
155 | $(ARCH_LOCAL) \ |
---|
156 | $(DA_ARCHFLAGS) \ |
---|
157 | -DDM_PARALLEL \ |
---|
158 | \ |
---|
159 | -DNETCDF \ |
---|
160 | \ |
---|
161 | \ |
---|
162 | \ |
---|
163 | \ |
---|
164 | \ |
---|
165 | \ |
---|
166 | -DGRIB1 \ |
---|
167 | -DINTIO \ |
---|
168 | -DLIMIT_ARGS \ |
---|
169 | -DCONFIG_BUF_LEN=$(CONFIG_BUF_LEN) \ |
---|
170 | -DMAX_DOMAINS_F=$(MAX_DOMAINS) \ |
---|
171 | -DNMM_NEST=$(WRF_NMM_NEST) |
---|
172 | CFLAGS = $(CFLAGS_LOCAL) -DDM_PARALLEL |
---|
173 | FCFLAGS = $(FCOPTIM) $(FCBASEOPTS) $(OMP) |
---|
174 | ESMF_LIB_FLAGS = |
---|
175 | ESMF_IO_LIB = $(WRF_SRC_ROOT_DIR)/external/esmf_time_f90/libesmf_time.a |
---|
176 | ESMF_IO_LIB_EXT = -L$(WRF_SRC_ROOT_DIR)/external/esmf_time_f90/libesmf_time.a |
---|
177 | INCLUDE_MODULES = $(MODULE_SRCH_FLAG) \ |
---|
178 | $(ESMF_MOD_INC) $(ESMF_LIB_FLAGS) \ |
---|
179 | -I$(WRF_SRC_ROOT_DIR)/main \ |
---|
180 | -I$(WRF_SRC_ROOT_DIR)/external/io_netcdf \ |
---|
181 | -I$(WRF_SRC_ROOT_DIR)/external/io_int \ |
---|
182 | -I$(WRF_SRC_ROOT_DIR)/frame \ |
---|
183 | -I$(WRF_SRC_ROOT_DIR)/share \ |
---|
184 | -I$(WRF_SRC_ROOT_DIR)/phys \ |
---|
185 | -I$(WRF_SRC_ROOT_DIR)/chem -I$(WRF_SRC_ROOT_DIR)/inc \ |
---|
186 | -I$(WRF_SRC_ROOT_DIR)/../../../../LMDZ.COMMON/libo/CICLADifort/.config/inc \ |
---|
187 | -I/opt/netcdf3/ifort/include \ |
---|
188 | \ |
---|
189 | |
---|
190 | REGISTRY = Registry |
---|
191 | |
---|
192 | LIB_BUNDLED = \ |
---|
193 | -L$(WRF_SRC_ROOT_DIR)/external/fftpack/fftpack5 -lfftpack \ |
---|
194 | -L$(WRF_SRC_ROOT_DIR)/external/io_grib1 -lio_grib1 \ |
---|
195 | -L$(WRF_SRC_ROOT_DIR)/external/io_grib_share -lio_grib_share \ |
---|
196 | -L$(WRF_SRC_ROOT_DIR)/external/io_int -lwrfio_int \ |
---|
197 | $(ESMF_IO_LIB) \ |
---|
198 | $(ESMF_IO_LIB) \ |
---|
199 | $(WRF_SRC_ROOT_DIR)/external/RSL_LITE/librsl_lite.a \ |
---|
200 | $(WRF_SRC_ROOT_DIR)/frame/module_internal_header_util.o \ |
---|
201 | $(WRF_SRC_ROOT_DIR)/frame/pack_utils.o |
---|
202 | |
---|
203 | LIB_EXTERNAL = \ |
---|
204 | $(WRF_SRC_ROOT_DIR)/external/io_netcdf/libwrfio_nf.a \ |
---|
205 | -L/opt/netcdf3/ifort/lib -lnetcdf -lnetcdff /opt/netcdf3/ifort/lib/libnetcdf.a \ |
---|
206 | -L$(WRF_SRC_ROOT_DIR)/../../../../LMDZ.COMMON/libo/CICLADifort/.config/lib -llmdz \ |
---|
207 | -lnetcdf |
---|
208 | |
---|
209 | LIB = $(LIB_BUNDLED) $(LIB_EXTERNAL) $(LIB_LOCAL) |
---|
210 | LDFLAGS = $(OMP) $(FCFLAGS) $(LDFLAGS_LOCAL) |
---|
211 | ENVCOMPDEFS = |
---|
212 | WRF_CHEM = 0 |
---|
213 | CPPFLAGS = $(ARCHFLAGS) $(ENVCOMPDEFS) -I$(LIBINCLUDE) $(TRADFLAG) |
---|
214 | NETCDFPATH = /opt/netcdf3/ifort |
---|
215 | PNETCDFPATH = |
---|
216 | |
---|
217 | bundled: wrf_ioapi_includes wrfio_grib_share wrfio_grib1 wrfio_int esmf_time fftpack |
---|
218 | external: wrfio_nf $(WRF_SRC_ROOT_DIR)/external/RSL_LITE/librsl_lite.a gen_comms_rsllite module_dm_rsllite $(ESMF_TARGET) |
---|
219 | |
---|
220 | ###################### |
---|
221 | externals: bundled external |
---|
222 | |
---|
223 | gen_comms_serial : |
---|
224 | ( /bin/rm -f $(WRF_SRC_ROOT_DIR)/tools/gen_comms.c ) |
---|
225 | |
---|
226 | module_dm_serial : |
---|
227 | ( if [ ! -e module_dm.F ] ; then /bin/cp module_dm_warning module_dm.F ; cat module_dm_stubs.F >> module_dm.F ; fi ) |
---|
228 | |
---|
229 | gen_comms_rsllite : |
---|
230 | ( if [ ! -e $(WRF_SRC_ROOT_DIR)/tools/gen_comms.c ] ; then \ |
---|
231 | /bin/cp $(WRF_SRC_ROOT_DIR)/tools/gen_comms_warning $(WRF_SRC_ROOT_DIR)/tools/gen_comms.c ; \ |
---|
232 | cat $(WRF_SRC_ROOT_DIR)/external/RSL_LITE/gen_comms.c >> $(WRF_SRC_ROOT_DIR)/tools/gen_comms.c ; fi ) |
---|
233 | |
---|
234 | module_dm_rsllite : |
---|
235 | ( if [ ! -e module_dm.F ] ; then /bin/cp module_dm_warning module_dm.F ; \ |
---|
236 | cat $(WRF_SRC_ROOT_DIR)/external/RSL_LITE/module_dm.F >> module_dm.F ; fi ) |
---|
237 | |
---|
238 | wrfio_nf : |
---|
239 | ( cd $(WRF_SRC_ROOT_DIR)/external/io_netcdf ; \ |
---|
240 | make NETCDFPATH="$(NETCDFPATH)" RANLIB="$(RANLIB)" CPP="$(CPP)" \ |
---|
241 | CC="$(SCC)" CFLAGS="$(CFLAGS)" \ |
---|
242 | FC="$(SFC) $(PROMOTION) $(FCFLAGS)" TRADFLAG="$(TRADFLAG)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" ) |
---|
243 | |
---|
244 | wrfio_pnf : |
---|
245 | ( cd $(WRF_SRC_ROOT_DIR)/external/io_pnetcdf ; \ |
---|
246 | make NETCDFPATH="$(PNETCDFPATH)" RANLIB="$(RANLIB)" CPP="$(CPP)" \ |
---|
247 | FC="$(FC) $(PROMOTION) $(FCFLAGS)" TRADFLAG="$(TRADFLAG)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" ) |
---|
248 | |
---|
249 | wrfio_grib_share : |
---|
250 | ( cd $(WRF_SRC_ROOT_DIR)/external/io_grib_share ; \ |
---|
251 | make CC="$(SCC)" CFLAGS="$(CFLAGS)" RM="$(RM)" RANLIB="$(RANLIB)" CPP="$(CPP)" \ |
---|
252 | FC="$(SFC) $(PROMOTION) -I. $(FCDEBUG) $(FCBASEOPTS) $(FCSUFFIX)" TRADFLAG="$(TRADFLAG)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" archive) |
---|
253 | |
---|
254 | wrfio_grib1 : |
---|
255 | ( cd $(WRF_SRC_ROOT_DIR)/external/io_grib1 ; \ |
---|
256 | make CC="$(SCC)" CFLAGS="$(CFLAGS)" RM="$(RM)" RANLIB="$(RANLIB)" CPP="$(CPP)" \ |
---|
257 | FC="$(SFC) $(PROMOTION) -I. $(FCDEBUG) $(FCBASEOPTS) $(FCSUFFIX)" TRADFLAG="$(TRADFLAG)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" archive) |
---|
258 | |
---|
259 | wrfio_grib2 : |
---|
260 | ( cd $(WRF_SRC_ROOT_DIR)/external/io_grib2 ; \ |
---|
261 | make CC="$(SCC)" CFLAGS="$(CFLAGS) " RM="$(RM)" RANLIB="$(RANLIB)" \ |
---|
262 | CPP="$(CPP)" \ |
---|
263 | FC="$(SFC) $(PROMOTION) -I. $(FCDEBUG) $(FCBASEOPTS) $(FCSUFFIX)" TRADFLAG="-traditional" AR="$(AR)" ARFLAGS="$(ARFLAGS)" \ |
---|
264 | FIXED="$(FORMAT_FIXED)" archive) |
---|
265 | |
---|
266 | wrfio_int : |
---|
267 | ( cd $(WRF_SRC_ROOT_DIR)/external/io_int ; \ |
---|
268 | make CC="$(CC)" RM="$(RM)" RANLIB="$(RANLIB)" CPP="$(CPP)" \ |
---|
269 | FC="$(SFC) $(PROMOTION) $(FCDEBUG) $(FCBASEOPTS)" \ |
---|
270 | TRADFLAG="$(TRADFLAG)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" all ) |
---|
271 | |
---|
272 | esmf_time : |
---|
273 | ( cd $(WRF_SRC_ROOT_DIR)/external/esmf_time_f90 ; \ |
---|
274 | make FC="$(SFC) $(PROMOTION) $(FCDEBUG) $(FCBASEOPTS)" RANLIB="$(RANLIB)" \ |
---|
275 | CPP="$(CPP) -I$(WRF_SRC_ROOT_DIR)/inc -I. $(ARCHFLAGS) $(TRADFLAG)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" ) |
---|
276 | |
---|
277 | fftpack : |
---|
278 | ( cd $(WRF_SRC_ROOT_DIR)/external/fftpack/fftpack5 ; \ |
---|
279 | make FC="$(SFC)" FFLAGS="$(PROMOTION) $(FCDEBUG) $(FCBASEOPTS)" RANLIB="$(RANLIB)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" ) |
---|
280 | |
---|
281 | $(WRF_SRC_ROOT_DIR)/external/RSL_LITE/librsl_lite.a : |
---|
282 | ( cd $(WRF_SRC_ROOT_DIR)/external/RSL_LITE ; make CC="$(CC) $(CFLAGS)" \ |
---|
283 | FC="$(FC) $(FCFLAGS) $(PROMOTION) $(BYTESWAPIO)" \ |
---|
284 | CPP="$(CPP) -I. $(ARCHFLAGS) $(TRADFLAG)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" ;\ |
---|
285 | $(RANLIB) $(WRF_SRC_ROOT_DIR)/external/RSL_LITE/librsl_lite.a ) |
---|
286 | |
---|
287 | ###################### |
---|
288 | # Macros, these should be generic for all machines |
---|
289 | |
---|
290 | LN = ln -sf |
---|
291 | MAKE = make -i -r |
---|
292 | RM = rm -f |
---|
293 | |
---|
294 | |
---|
295 | # These sub-directory builds are identical across all architectures |
---|
296 | |
---|
297 | wrf_ioapi_includes : |
---|
298 | ( cd $(WRF_SRC_ROOT_DIR)/external/ioapi_share ; \ |
---|
299 | $(MAKE) NATIVE_RWORDSIZE="$(NATIVE_RWORDSIZE)" RWORDSIZE="$(RWORDSIZE)" AR="$(AR)" ARFLAGS="$(ARFLAGS)" ) |
---|
300 | |
---|
301 | wrfio_esmf : |
---|
302 | ( cd $(WRF_SRC_ROOT_DIR)/external/io_esmf ; \ |
---|
303 | make FC="$(FC) $(PROMOTION) $(FCDEBUG) $(FCBASEOPTS) $(ESMF_MOD_INC)" \ |
---|
304 | RANLIB="$(RANLIB)" CPP="$(CPP) $(POUND_DEF) " AR="$(AR)" ARFLAGS="$(ARFLAGS)" ) |
---|
305 | |
---|
306 | # There is probably no reason to modify these rules |
---|
307 | |
---|
308 | .F.i: |
---|
309 | $(RM) $@ |
---|
310 | $(CPP) -I$(WRF_SRC_ROOT_DIR)/inc $(CPPFLAGS) $*.F > $@ |
---|
311 | mv $*.i $(DEVTOP)/pick/$*.f90 |
---|
312 | cp $*.F $(DEVTOP)/pick |
---|
313 | |
---|
314 | .F.o: |
---|
315 | $(RM) $@ |
---|
316 | $(SED_FTN) $*.F > $*.b |
---|
317 | $(CPP) -I$(WRF_SRC_ROOT_DIR)/inc $(CPPFLAGS) $*.b > $*.f90 |
---|
318 | $(RM) $*.b |
---|
319 | $(FC) -o $@ -c $(FCFLAGS) $(MODULE_DIRS) $(PROMOTION) $(FCSUFFIX) $*.f90 |
---|
320 | |
---|
321 | .F.f90: |
---|
322 | $(RM) $@ |
---|
323 | $(SED_FTN) $*.F > $*.b |
---|
324 | $(CPP) -I$(WRF_SRC_ROOT_DIR)/inc $(CPPFLAGS) $*.b > $@ |
---|
325 | $(RM) $*.b |
---|
326 | |
---|
327 | .f90.o: |
---|
328 | $(RM) $@ |
---|
329 | $(FC) -o $@ -c $(FCFLAGS) $(PROMOTION) $(FCSUFFIX) $*.f90 |
---|
330 | |
---|
331 | .c.o: |
---|
332 | $(RM) $@ |
---|
333 | $(CC) -o $@ -c $(CFLAGS) $*.c |
---|
334 | |
---|
335 | # A little more adventurous. Allow full opt on |
---|
336 | # mediation_integrate.o \ |
---|
337 | # shift_domain_em.o \ |
---|
338 | # solve_em.o <-- gets a little kick from SOLVE_EM_SPECIAL too, if defined |
---|
339 | # mediation_feedback_domain.o : mediation_feedback_domain.F |
---|
340 | # mediation_force_domain.o : mediation_force_domain.F |
---|
341 | # mediation_interp_domain.o : mediation_interp_domain.F |
---|
342 | |
---|
343 | # compile these without high optimization to speed compile |
---|
344 | convert_nmm.o : convert_nmm.F |
---|
345 | init_modules_em.o : init_modules_em.F |
---|
346 | input_wrf.o : input_wrf.F |
---|
347 | module_io.o : module_io.F |
---|
348 | module_comm_dm.o : module_comm_dm.F |
---|
349 | module_configure.o : module_configure.F |
---|
350 | module_dm.o : module_dm.F |
---|
351 | module_domain.o : module_domain.F |
---|
352 | module_domain_type.o : module_domain_type.F |
---|
353 | module_alloc_space.o : module_alloc_space.F |
---|
354 | module_tiles.o : module_tiles.F |
---|
355 | module_fddaobs_rtfdda.o : module_fddaobs_rtfdda.F |
---|
356 | module_initialize.o : module_initialize.F |
---|
357 | module_physics_init.o : module_physics_init.F |
---|
358 | module_initialize_b_wave.o : module_initialize_b_wave.F |
---|
359 | module_initialize_hill2d_x.o : module_initialize_hill2d_x.F |
---|
360 | module_initialize_quarter_ss.o : module_initialize_quarter_ss.F |
---|
361 | module_initialize_real.o : module_initialize_real.F |
---|
362 | module_initialize_real.o: module_initialize_real.F |
---|
363 | module_initialize_squall2d_x.o : module_initialize_squall2d_x.F |
---|
364 | module_initialize_squall2d_y.o : module_initialize_squall2d_y.F |
---|
365 | module_integrate.o : module_integrate.F |
---|
366 | module_io_mm5.o : module_io_mm5.F |
---|
367 | module_io_wrf.o : module_io_wrf.F |
---|
368 | module_si_io.o : module_si_io.F |
---|
369 | module_state_description.o : module_state_description.F |
---|
370 | output_wrf.o : output_wrf.F |
---|
371 | solve_interface.o : solve_interface.F |
---|
372 | start_domain.o : start_domain.F |
---|
373 | start_domain_nmm.o : start_domain_nmm.F |
---|
374 | start_em.o : start_em.F |
---|
375 | wrf_auxhist10in.o : wrf_auxhist10in.F |
---|
376 | wrf_auxhist10out.o : wrf_auxhist10out.F |
---|
377 | wrf_auxhist11in.o : wrf_auxhist11in.F |
---|
378 | wrf_auxhist11out.o : wrf_auxhist11out.F |
---|
379 | wrf_auxhist1in.o : wrf_auxhist1in.F |
---|
380 | wrf_auxhist1out.o : wrf_auxhist1out.F |
---|
381 | wrf_auxhist2in.o : wrf_auxhist2in.F |
---|
382 | wrf_auxhist2out.o : wrf_auxhist2out.F |
---|
383 | wrf_auxhist3in.o : wrf_auxhist3in.F |
---|
384 | wrf_auxhist3out.o : wrf_auxhist3out.F |
---|
385 | wrf_auxhist4in.o : wrf_auxhist4in.F |
---|
386 | wrf_auxhist4out.o : wrf_auxhist4out.F |
---|
387 | wrf_auxhist5in.o : wrf_auxhist5in.F |
---|
388 | wrf_auxhist5out.o : wrf_auxhist5out.F |
---|
389 | wrf_auxhist6in.o : wrf_auxhist6in.F |
---|
390 | wrf_auxhist6out.o : wrf_auxhist6out.F |
---|
391 | wrf_auxhist7in.o : wrf_auxhist7in.F |
---|
392 | wrf_auxhist7out.o : wrf_auxhist7out.F |
---|
393 | wrf_auxhist8in.o : wrf_auxhist8in.F |
---|
394 | wrf_auxhist8out.o : wrf_auxhist8out.F |
---|
395 | wrf_auxhist9in.o : wrf_auxhist9in.F |
---|
396 | wrf_auxhist9out.o : wrf_auxhist9out.F |
---|
397 | wrf_auxinput10in.o : wrf_auxinput10in.F |
---|
398 | wrf_auxinput10out.o : wrf_auxinput10out.F |
---|
399 | wrf_auxinput11in.o : wrf_auxinput11in.F |
---|
400 | wrf_auxinput11out.o : wrf_auxinput11out.F |
---|
401 | wrf_auxinput1in.o : wrf_auxinput1in.F |
---|
402 | wrf_auxinput1out.o : wrf_auxinput1out.F |
---|
403 | wrf_auxinput2in.o : wrf_auxinput2in.F |
---|
404 | wrf_auxinput2out.o : wrf_auxinput2out.F |
---|
405 | wrf_auxinput3in.o : wrf_auxinput3in.F |
---|
406 | wrf_auxinput3out.o : wrf_auxinput3out.F |
---|
407 | wrf_auxinput4in.o : wrf_auxinput4in.F |
---|
408 | wrf_auxinput4out.o : wrf_auxinput4out.F |
---|
409 | wrf_auxinput5in.o : wrf_auxinput5in.F |
---|
410 | wrf_auxinput5out.o : wrf_auxinput5out.F |
---|
411 | wrf_auxinput6in.o : wrf_auxinput6in.F |
---|
412 | wrf_auxinput6out.o : wrf_auxinput6out.F |
---|
413 | wrf_auxinput7in.o : wrf_auxinput7in.F |
---|
414 | wrf_auxinput7out.o : wrf_auxinput7out.F |
---|
415 | wrf_auxinput8in.o : wrf_auxinput8in.F |
---|
416 | wrf_auxinput8out.o : wrf_auxinput8out.F |
---|
417 | wrf_auxinput9in.o : wrf_auxinput9in.F |
---|
418 | wrf_auxinput9out.o : wrf_auxinput9out.F |
---|
419 | wrf_bdyin.o : wrf_bdyin.F |
---|
420 | wrf_bdyout.o : wrf_bdyout.F |
---|
421 | wrf_ext_read_field.o : wrf_ext_read_field.F |
---|
422 | wrf_ext_write_field.o : wrf_ext_write_field.F |
---|
423 | wrf_fddaobs_in.o : wrf_fddaobs_in.F |
---|
424 | wrf_histin.o : wrf_histin.F |
---|
425 | wrf_histout.o : wrf_histout.F |
---|
426 | wrf_inputin.o : wrf_inputin.F |
---|
427 | wrf_inputout.o : wrf_inputout.F |
---|
428 | wrf_restartin.o : wrf_restartin.F |
---|
429 | wrf_restartout.o : wrf_restartout.F |
---|
430 | wrf_tsin.o : wrf_tsin.F |
---|
431 | nl_get_0_routines.o : nl_get_0_routines.F |
---|
432 | nl_get_1_routines.o : nl_get_1_routines.F |
---|
433 | nl_set_0_routines.o : nl_set_0_routines.F |
---|
434 | nl_set_1_routines.o : nl_set_1_routines.F |
---|
435 | |
---|
436 | convert_nmm.o \ |
---|
437 | init_modules_em.o \ |
---|
438 | module_comm_dm.o \ |
---|
439 | module_dm.o \ |
---|
440 | module_alloc_space.o \ |
---|
441 | module_fddaobs_rtfdda.o \ |
---|
442 | module_initialize.o \ |
---|
443 | module_initialize_b_wave.o \ |
---|
444 | module_initialize_hill2d_x.o \ |
---|
445 | module_initialize_quarter_ss.o \ |
---|
446 | module_initialize_real.o \ |
---|
447 | module_initialize_squall2d_x.o \ |
---|
448 | module_initialize_squall2d_y.o \ |
---|
449 | module_integrate.o \ |
---|
450 | module_io_mm5.o \ |
---|
451 | module_io_wrf.o \ |
---|
452 | module_si_io.o \ |
---|
453 | module_tiles.o \ |
---|
454 | output_wrf.o \ |
---|
455 | solve_interface.o \ |
---|
456 | start_domain.o \ |
---|
457 | start_domain_nmm.o \ |
---|
458 | start_em.o \ |
---|
459 | wrf_fddaobs_in.o \ |
---|
460 | wrf_tsin.o : |
---|
461 | $(RM) $@ |
---|
462 | $(SED_FTN) $*.F > $*.b |
---|
463 | $(CPP) -I$(WRF_SRC_ROOT_DIR)/inc $(CPPFLAGS) $(OMPCPP) $*.b > $*.f90 |
---|
464 | $(RM) $*.b |
---|
465 | $(FC) -c $(PROMOTION) $(FCNOOPT) $(FCBASEOPTS) $(MODULE_DIRS) $(FCSUFFIX) $(OMP) $*.f90 |
---|
466 | |
---|
467 | #solve_em.o : |
---|
468 | # $(RM) $@ |
---|
469 | # $(SED_FTN) $*.F > $*.b |
---|
470 | # $(CPP) -I$(WRF_SRC_ROOT_DIR)/inc $(CPPFLAGS) $*.b > $*.f90 |
---|
471 | # $(RM) $*.b |
---|
472 | # $(FC) -o $@ -c $(FCFLAGS) $(MODULE_DIRS) $(PROMOTION) $(FCSUFFIX) $(SOLVE_EM_SPECIAL) $(OMP) $*.f90 |
---|
473 | |
---|
474 | module_sf_ruclsm.o : module_sf_ruclsm.F |
---|
475 | module_cu_kf.o : module_cu_kf.F |
---|
476 | |
---|
477 | module_sf_ruclsm.o module_cu_kf.o : |
---|
478 | $(RM) $@ |
---|
479 | $(SED_FTN) $*.F > $*.b |
---|
480 | $(CPP) -I$(WRF_SRC_ROOT_DIR)/inc $(CPPFLAGS) $(OMPCPP) $*.b > $*.f90 |
---|
481 | $(RM) $*.b |
---|
482 | $(FC) -c $(PROMOTION) $(FCREDUCEDOPT) $(FCBASEOPTS) $(MODULE_DIRS) $(FCSUFFIX) $(OMP) $*.f90 |
---|
483 | |
---|
484 | # compile without OMP |
---|
485 | input_wrf.o \ |
---|
486 | module_domain.o \ |
---|
487 | module_domain_type.o \ |
---|
488 | module_physics_init.o \ |
---|
489 | module_io.o \ |
---|
490 | wrf_auxhist10in.o \ |
---|
491 | wrf_auxhist10out.o \ |
---|
492 | wrf_auxhist11in.o \ |
---|
493 | wrf_auxhist11out.o \ |
---|
494 | wrf_auxhist1in.o \ |
---|
495 | wrf_auxhist1out.o \ |
---|
496 | wrf_auxhist2in.o \ |
---|
497 | wrf_auxhist2out.o \ |
---|
498 | wrf_auxhist3in.o \ |
---|
499 | wrf_auxhist3out.o \ |
---|
500 | wrf_auxhist4in.o \ |
---|
501 | wrf_auxhist4out.o \ |
---|
502 | wrf_auxhist5in.o \ |
---|
503 | wrf_auxhist5out.o \ |
---|
504 | wrf_auxhist6in.o \ |
---|
505 | wrf_auxhist6out.o \ |
---|
506 | wrf_auxhist7in.o \ |
---|
507 | wrf_auxhist7out.o \ |
---|
508 | wrf_auxhist8in.o \ |
---|
509 | wrf_auxhist8out.o \ |
---|
510 | wrf_auxhist9in.o \ |
---|
511 | wrf_auxhist9out.o \ |
---|
512 | wrf_auxinput10in.o \ |
---|
513 | wrf_auxinput10out.o \ |
---|
514 | wrf_auxinput11in.o \ |
---|
515 | wrf_auxinput11out.o \ |
---|
516 | wrf_auxinput1in.o \ |
---|
517 | wrf_auxinput1out.o \ |
---|
518 | wrf_auxinput2in.o \ |
---|
519 | wrf_auxinput2out.o \ |
---|
520 | wrf_auxinput3in.o \ |
---|
521 | wrf_auxinput3out.o \ |
---|
522 | wrf_auxinput4in.o \ |
---|
523 | wrf_auxinput4out.o \ |
---|
524 | wrf_auxinput5in.o \ |
---|
525 | wrf_auxinput5out.o \ |
---|
526 | wrf_auxinput6in.o \ |
---|
527 | wrf_auxinput6out.o \ |
---|
528 | wrf_auxinput7in.o \ |
---|
529 | wrf_auxinput7out.o \ |
---|
530 | wrf_auxinput8in.o \ |
---|
531 | wrf_auxinput8out.o \ |
---|
532 | wrf_auxinput9in.o \ |
---|
533 | wrf_auxinput9out.o \ |
---|
534 | wrf_bdyin.o \ |
---|
535 | wrf_bdyout.o \ |
---|
536 | wrf_ext_read_field.o \ |
---|
537 | wrf_ext_write_field.o \ |
---|
538 | wrf_histin.o \ |
---|
539 | wrf_histout.o \ |
---|
540 | wrf_inputin.o \ |
---|
541 | wrf_inputout.o \ |
---|
542 | wrf_restartin.o \ |
---|
543 | wrf_restartout.o \ |
---|
544 | module_state_description.o \ |
---|
545 | nl_set_0_routines.o \ |
---|
546 | nl_set_1_routines.o \ |
---|
547 | nl_get_0_routines.o \ |
---|
548 | nl_get_1_routines.o \ |
---|
549 | module_configure.o : |
---|
550 | $(RM) $@ |
---|
551 | $(SED_FTN) $*.F > $*.b |
---|
552 | $(CPP) -I$(WRF_SRC_ROOT_DIR)/inc $(CPPFLAGS) $(OMPCPP) $*.b > $*.f90 |
---|
553 | $(RM) $*.b |
---|
554 | $(FC) -c $(PROMOTION) $(FCSUFFIX) $(FCNOOPT) $(FCBASEOPTS) $(MODULE_DIRS) $*.f90 |
---|