-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile_headergraham.mk
executable file
·1270 lines (1084 loc) · 50.2 KB
/
Makefile_headergraham.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#------------------------------------------------------------------------------
# GEOS-Chem Global Chemical Transport Model #
#------------------------------------------------------------------------------
#BOP
#
# !IROUTINE: Makefile_header.mk
#
# !DESCRIPTION: This sub-makefile defines the variables which specify
# compilation options for the different supported compiler/platform
# combinations. Also, the default makefile compilation rules are specified
# here.
#\\
#\\
# !REMARKS:
# To build the programs, call "make" with the following syntax:
# .
# make -jN TARGET REQUIRED-FLAGS [ OPTIONAL-FLAGS ]
#
# To display a complete list of options, type "make help".
# .
# The following variables are exported to the main-level Makefile:
# .
# Variable Description
# -------- -----------
# CC Contains the default C compilation commands (for PGI only)
# F90 Contains the Fortran compilation commands
# FREEFORM Contains the command to force F90 "free format" compilation
# LD Contains the command to link to libraries & make executable
# LINK Contains the commands to link to GEOS-Chem built libraries
# R8 Contains the command to force REAL -> REAL*8
# SHELL Contains the default Unix shell to use when building code
# NCL Contains the default netCDF library link commands
# .
# FFLAGS is a local variable that is not returned to the "outside world",
# but is only used locally. COMPILER, HDF5, and OMP are all input via the
# command line or via environment variables.
# .
# NOTE: We now use SHELL :=/bin/bash as the default Unix shell. This allows
# us to extend the Makefile ifeq statements so that we can test for more than
# one string. The following example is used to ensure that the met field name
# selected by the user is case-insensitive:
#
# # %%%%% GEOS-5 %%%%%
# REGEXP :=((^[Gg][Ee][Oo][Ss])?5|.5)
# ifeq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
# USER_DEFS += -DGEOS_5
# endif
# .
# The [[ ]] in bash is an evaluation. The above ifeq statement uses regular
# expressions to test if the MET variable matches the string "GEOS" (case-
# insensitive) and either "5" or "any character and then a 5". This will
# return true (via the "echo true" statement) for combinations like "GEOS-5",
# "geos5", "Geos-5", "GeOs.5", etc. This is a robust way of evaluating
# the user's input, and will make errors less likely.
#
# !REVISION HISTORY:
# 16 Sep 2009 - R. Yantosca - Initial version
# 22 Sep 2009 - R. Yantosca - Bug fix, added -I$(HDR) to F90 compilation lines
# 24 Sep 2009 - R. Yantosca - added NONUMA option for PGI compiler
# 07 Oct 2009 - R. Yantosca - Replaced .SUFFIXES section w/ pattern rules
# 19 Nov 2009 - R. Yantosca - Now use OMP variable to determine whether to
# turn on OpenMP parallelization options
# 23 Nov 2009 - R. Yantosca - Now use -module $(MOD) instead of -I$(MOD) to
# specify the directory for *.mod files on both
# IFORT and PGI compilers.
# 23 Nov 2009 - R. Yantosca - Now use -moddir=$(MOD) and -M$(MOD) instead of
# -I$(MOD) to specify the directory for *.mod
# files on the SunStudio compiler.
# 23 Nov 2009 - R. Yantosca - Change DEBUG to allow for new version of
# Totalview which doesn't choke when debugging
# parallel code (Totalview 8.6.1-1)
# 02 Dec 2009 - R. Yantosca - Added SUN32 switch for building 32-bit
# executbable on the SunStudio compiler
# 11 Dec 2009 - R. Yantosca - Now define SHELL here and export to other
# Makefiles, so as to have a single place where
# the Unix shell name is defined.
# 21 Dec 2009 - R. Yantosca - Add H5I and H5L variables to specify the
# HDF5 library and include paths. Also set
# the default to not link to the HDF5 libraries.
# 21 Dec 2009 - R. Yantosca - Now pass LINK back to the outside world, so
# that the Makefile that builds the executable
# can reference it.
# 19 Jan 2010 - R. Yantosca - Minor fix, add -m64 if SUN32 is not defined.
# 25 Jan 2010 - R. Yantosca - Now add -DTOMAS to FFLAGS if necessary
# 28 Jan 2010 - C. Carouge - Add -lIsoropia to LINK, for ISORROPIA II
# 16 Feb 2011 - R. Yantosca - Now add -DAPM to FFLAGS if necessary
# 25 Aug 2011 - R. Yantosca - Add "-fp-model source" to FFLAGS for IFORT
# compiler. This will prevent aggressive
# optimizations from changing numerical results.
# 25 Aug 2011 - R. Yantosca - Add -CU (check for uninit'd variables) to
# FFLAGS when using IFORT w/ the DEBUG option.
# 26 Aug 2011 - R. Yantosca - Allow for deactivation of the "-fp-model source"
# option by using the PRECISE=no env variable
# 24 Jan 2012 - R. Yantosca - If NETCDF=yes, GEOS-Chem will link and include
# to the netCDF dir paths that are specified
# 24 Jan 2012 - R. Yantosca - Now use := for makefile assignment statements
# 10 Feb 2012 - R. Yantosca - When compiling with NETCDF=yes or HDF5=yes,
# we must also add the flags -mcmodel=medium
# -i-dynamic to FFLAGS in order to avoid memory
# errors (for IFORT only)
# 10 Feb 2012 - R. Yantosca - Remove -CU from the DEBUG option (IFORT only)
# 19 Mar 2012 - R. Yantosca - Add optional NO_ISO switch, which will turn off
# the ISORROPIA ATE package for testing
# 05 Apr 2012 - R. Yantosca - Now assume netCDF is always used
# 05 Apr 2012 - R. Yantosca - Change BL_INC_NETCDF to INC_NETCDF
# 05 Apr 2012 - R. Yantosca - Change BL_INC_HDF5 to INC_HDF5
# 05 Apr 2012 - R. Yantosca - Change BL_LIB_NETCDF to LIB_NETCDF
# 05 Apr 2012 - R. Yantosca - Change BL_LIB_HDF5 to LIB_HDF5
# 30 Apr 2012 - R. Yantosca - Add NETCDF3=[yes|no] makefile option
# 30 Apr 2012 - R. Yantosca - Use separate netCDF link and include paths
# for netCDF3 and for netCDF4
# 30 Apr 2012 - R. Yantosca - Also add -mcmodel=medium flag for PGI compiler
# 09 May 2012 - R. Yantosca - Now try to get the proper linking sequence
# for netCDF etc w/ nf-config and nc-config.
# 11 May 2012 - R. Yantosca - Now export NCL (netCDF linking sequence)
# 17 Aug 2012 - R. Yantosca - Now add RRTMG=yes option for RRTMG rad transfer
# 07 Sep 2012 - R. Yantosca - Now add OPT variable to set global opt levels
# 07 Sep 2012 - R. Yantosca - Also set TRACEBACK for PGI compiler
# 17 Apr 2013 - R. Yantosca - Add switch to set -DKPP_SOLVE_ALWAYS, which
# will force KPP to get past nonconvergences
# 25 Feb 2013 - S. Farina - Add flag for TOMAS40
# 22 Apr 2013 - R. Yantosca - TOMAS40=yes option now sets -DTOMAS -DTOMAS40
# 28 Apr 2013 - S. Farina - Add flags for TOMAS15 and TOMAS12
# 13 Aug 2013 - R. Yantosca - Removed "define.h"; now set all GEOS-Chem
# user options via the Make command
# 14 Aug 2013 - R. Yantosca - Now use regular expressions to test the
# validity of command-line inputs
# 21 Aug 2013 - R. Yantosca - Improved error checking for command line inputs
# 26 Aug 2013 - R. Yantosca - Add -debug all as an IFORT debugging option
# 16 Sep 2013 - R. Yantosca - Now set GIGC Cpp switches first. This allows
# us to skip the GRID setting if we are using
# EXTERNAL_GRID=yes or EXTERNAL_FORCING=yes.
# 18 Sep 2013 - M. Long - Add edits for HPC Grid-Indpendent GEOS-Chem
# 26 Sep 2013 - R. Yantosca - MET=geosfp now sets Cpp switch w/ -DGEOS_FP
# 07 Nov 2013 - R. Yantosca - NEST=se to now sets CPP switch w/ -DNESTED_SE
# 08 Nov 2013 - R. Yantosca - Add FPEX flag to avoid conflicting with the
# ESMF/MAPL environment variable FPE
# 24 Feb 2014 - R. Yantosca - Add UCX=yes flag for invoking UCX strat chem
# 18 Mar 2014 - R. Yantosca - Now add TAU_PROF=y flag to invoke TAU profiler
# 19 Mar 2014 - R. Yantosca - Move library link commands after the sections
# that set the C-preprocessor switches
# 19 Mar 2014 - R. Yantosca - Restore GTMM compilation funcitonality
# 19 Mar 2014 - R. Yantosca - Add more visible comment section dividers
# 20 Mar 2014 - R. Yantosca - Bug fix: "+= -DDEBUG" instead of ":= -DDEBUG"
# 09 Jul 2014 - R. Yantosca - Now don't require MET or GRID if target is
# srcdoc, utildoc, gtmmdoc, makedoc, or hemcodoc
# 21 Jul 2014 - R. Yantosca - Update build sequence
# 03 Oct 2014 - R. Yantosca - Now turn on NO_REDUCED=y for hpc target
# 03 Oct 2014 - R. Yantosca - Now compatible with netCDF 4.1.1 or 4.2+
# 17 Oct 2014 - R. Yantosca - Don't require MET or GRID to remove ESMF etc.
# 05 Nov 2014 - R. Yantosca - Will compile w/ 8-byte precision by default
# 14 Nov 2014 - R. Yantosca - Further updates for hpc compilation
# 21 Nov 2014 - R. Yantosca - Add special compilation command for ISORROPIA
# 21 Nov 2014 - R. Yantosca - Add cosmetic changes and indentation
# 06 Jan 2015 - R. Yantosca - Add two-way nesting options from Y. Y. Yan
# 09 Jan 2015 - M. Sulprizio- Now properly link to the RRTMG directory
# 13 Jan 2015 - R. Yantosca - Add fix for GEOS-Chem-Libraries library path
# 08 Apr 2015 - R. Yantosca - Bug fix: set RRTMG=yes if it passes the regexp
# 10 Apr 2015 - R. Yantosca - Export RRTMG_NEEDED var to be used elsewhere
# 10 Apr 2015 - R. Yantosca - Bug fix: -l rad should be -lrad in link var
# 12 May 2015 - R. Yantosca - Bug fix for PGI compiler: remove extra "-"
# in front of $(NC_INC_CMD) in the PGI section
# 12 May 2015 - R. Yantosca - Now use GC_BIN, GC_INCLUDE to point to the
# netCDF library paths and GC_F_BIN, GC_F_INCLUDE
# to point to netCDF-Fortran library paths.
# (In some cases, these are the same).
# 20 May 2015 - R. Yantosca - Test if GC_F_BIN and GC_F_INCLUDE are defined
# as env variables before trying to use them.
# 29 May 2015 - R. Yantosca - Now set KPP_CHEM for KPP. We can't redefine
# the CHEM variable because it is an env var.
# 04 Jun 2015 - R. Yantosca - Now use RRTMG_NO_CLEAN=y or RRTMG_NOCLEAN=y to
# removing RRTMG objects, modules, and libraries.
# 04 Jun 2015 - R. Yantosca - Bug fix: don't turn on UCX except for CHEM=UCX
# 15 Jun 2015 - R. Yantosca - Now define the HEMCO standalone link command
# separately from the GEOS-Chem link command
# 07 Jul 2015 - M. Sulprizio- Add option for CHEM=SOA_SVPOA
# 17 Jul 2015 - E. Lundgren - Remove BSTATIC option when picking pgi options
# for debug run or regular run
# 30 Jul 2015 - M. Yannetti - Added TIMERS.
# 03 Aug 2015 - M. Sulprizio- NEST=cu to now sets CPP switch w/ -DNESTED_CU for
# custom nested grids
# 11 Aug 2015 - R. Yantosca - Add MERRA2 as a met field option
# 24 Aug 2015 - R. Yantosca - Bug fix: Add missing | when testing USER_DEFS
# 07 Dec 2015 - R. Yantosca - Add "realclean_except_rrtmg" target that
# replaces the RRTMG_CLEAN variabe
# 10 Feb 2016 - E. Lundgren - Add BPCH restart file input and output switches
# 11 Feb 2016 - E. Lundgren - Change BPCH to BPCH_DIAG, NETCDF to NC_DIAG
#EOP
#------------------------------------------------------------------------------
#BOC
###############################################################################
### ###
### Set the default Unix shell and some error message variables ###
### ###
###############################################################################
# Set default shell to bash, for use with the Makefile conditionals
SHELL :=/bin/bash
# Error message for bad COMPILER input
ERR_CMPLR :="Select a compiler: COMPILER=ifort, COMPILER=pgi"
# Error message for bad MET input
ERR_MET :="Select a met field: MET=gcap, MET=geos4, MET=geos5, MET=merra, MET=geos-fp, MET=merra2)"
# Error message for bad GRID input
ERR_GRID :="Select a horizontal grid: GRID=4x5. GRID=2x25, GRID=05x0666, GRID=05x0625, GRID=025x03125"
# Error message for bad NEST input
ERR_NEST :="Select a nested grid: NEST=ch, NEST=eu, NEST=na NEST=se, NEST=cu"
# Error message for bad two-way coupled model input (yanyy,6/18/14)
ERR_COUPLECH :="Select a coupled grid for Asia : COUPLECH=2x25ch, COUPLECH=4x5ch"
ERR_COUPLENA :="Select a coupled grid for North America: COUPLENA=2x25na, COUPLENA=4x5na"
ERR_COUPLEEU :="Select a coupled grid for Europe : COUPLEEU=2x25eu, COUPLEEU=4x5eu"
ERR_COUPLESE :="Select a coupled grid for SE Asia : COUPLESE=2x25se, COUPLEEU=4x5se"
ERR_COUPLE :="Select a coupled choice: COUPLE=yes"
# Error message for bad GIGC config
ERR_GIGC :="Unable to find the GIGC configuration file. Have you downloaded the GIGC?"
# Error message for bad GIGC config
ERR_GIGC :="Unable to find the GIGC configuration file. Have you downloaded the GIGC?"
# Error message for diagnostics
ERR_DIAG :="Select one diagnostic output type: NC_DIAG=y or BPCH_DIAG=y"
###############################################################################
### ###
### Set C-preprocessor switches representing user options. These are not ###
### specific to any compiler, but are general options for the simulation. ###
### ###
### NOTE: To make the user input more robust, we use regular expression ###
### syntax to match characters in the various Makefile variables. See ###
### this web page for more info: ###
### http://www.tldp.org/LDP/abs/html/x17046.html ###
### ###
###############################################################################
#------------------------------------------------------------------------------
# Compiler settings
#------------------------------------------------------------------------------
# %%%%% OpenMP parallelization default) %%%%%
ifndef OMP
OMP :=yes
endif
# %%%%% Set the HPC variable if we are building for use w/ ESMF/MPI %%%%
ifeq ($(shell [[ "$(MAKECMDGOALS)" =~ "hpc" ]] && echo true),true)
HPC :=yes
export HPC
endif
# %%%%% For HPC, we disable OpenMP and turn on the full vertical grid %%%
ifeq ($(HPC),yes)
OMP :=no
NO_REDUCED :=yes
# PRECISION :=4
endif
# %%%%% Default to 8-byte precision unless specified otherwise %%%%%
ifndef PRECISION
PRECISION :=8
endif
# %%%%% Default to Timers disabled %%%%%
ifndef TIMERS
TIMERS :=0
endif
# %%%%% Default to bpch input restart file disabled %%%%%
ifndef BPCH_RST_IN
BPCH_RST_IN :=no
endif
# %%%%% Default to bpch output restart file disabled %%%%%
ifndef BPCH_RST_OUT
BPCH_RST_OUT :=no
endif
# %%%%% Set default compiler %%%%%
# %%%%% If COMPILER is not defined, default to the $(FC) variable, which %%%%%
# %%%%% is set in your .bashrc, or when you load the compiler module %%%%%
ifndef COMPILER
COMPILER :=$(FC)
endif
# %%%%% Test if Intel Fortran Compiler is selected %%%%%
REGEXP :=(^[Ii][Ff][Oo][Rr][Tt])
ifeq ($(shell [[ "$(COMPILER)" =~ $(REGEXP) ]] && echo true),true)
COMPILE_CMD :=$(FC)
USER_DEFS += -DLINUX_IFORT
endif
# %%%%% Test if PGI Fortran compiler is selected %%%%%
REGEXP :=(^[Pp][Gg])
ifeq ($(shell [[ "$(COMPILER)" =~ $(REGEXP) ]] && echo true),true)
COMPILE_CMD :=$(FC)
USER_DEFS += -DLINUX_PGI
endif
# %%%%% ERROR CHECK! Make sure our COMPILER selection is valid! %%%%%
REGEXP :=((-DLINUX_)?IFORT|PGI)
ifneq ($(shell [[ "$(USER_DEFS)" =~ $(REGEXP) ]] && echo true),true)
$(error $(ERR_CMPLR))
endif
#------------------------------------------------------------------------------
# GEOS-Chem HP settings
#------------------------------------------------------------------------------
# %%%%% DEVEL %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(DEVEL)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DDEVEL
endif
# %%%%% ESMF %%%%%
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(ESMF)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DESMF_
NO_GRID_NEEDED :=1
endif
# %%%%% EXTERNAL_GRID %%%%%
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(EXTERNAL_GRID)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXTERNAL_GRID
NO_GRID_NEEDED :=1
endif
# %%%%% EXTERNAL_FORCING %%%%%
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(EXTERNAL_FORCING)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXTERNAL_FORCING
NO_GRID_NEEDED :=1
endif
#------------------------------------------------------------------------------
# Restart settings
#------------------------------------------------------------------------------
# %%%%% BPCH_RST_IN (for using bpch restart file as input ) %%%%%
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(BPCH_RST_IN)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DBPCH_RST_IN
endif
# %%%%% BPCH_RST_OUT (for using bpch restart file as output ) %%%%%
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(BPCH_RST_OUT)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DBPCH_RST_OUT
endif
#------------------------------------------------------------------------------
# Diagnostic settings
#------------------------------------------------------------------------------
# %%%%% Use netCDF diagnostics if DEVEL=y %%%%%
ifdef DEVEL
NC_DIAG :=yes
BPCH_DIAG :=no
endif
# %%%%% Test for diagnostic output type, set to bpch if not specified %%%%%
ifndef BPCH_DIAG
ifndef NC_DIAG
BPCH_DIAG :=yes
endif
endif
# %%%%% ERROR CHECK! Make sure only one diagnostic output type is selected %%%%%
ifeq ($(BPCH_DIAG),y)
ifeq ($(NC_DIAG),y)
$(error $(ERR_DIAG))
endif
endif
# %%%%% BPCH (for using old BPCH diagnostic output) %%%%%
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(BPCH_DIAG)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DBPCH_DIAG
endif
# %%%%% NETCDF (for using new netCDF diagnostic output) %%%%%
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(NC_DIAG)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DNC_DIAG
endif
#------------------------------------------------------------------------------
# KPP settings chemistry solver settings. NOTE: We can't redefine CHEM
# (since it is an environent variable), so define a shadow variable KPP_CHEM.
# %%%%% NOTE: These will probably be obsolete when FLEXCHEM is added. %%%%%
#------------------------------------------------------------------------------
# Test if the CHEM value is set
IS_CHEM_SET :=0
# %%%%% Test if CHEM=UCX (will also turn on UCX) %%%%%
REGEXP :=(^[Uu][Cc][Xx])
ifeq ($(shell [[ "$(CHEM)" =~ $(REGEXP) ]] && echo true),true)
UCX :=y
KPP_CHEM :=UCX
IS_CHEM_SET :=1
endif
# %%%%% Test if CHEM=SOA %%%%%
REGEXP :=(^[Ss][Oo][Aa])
ifeq ($(shell [[ "$(CHEM)" =~ $(REGEXP) ]] && echo true),true)
KPP_CHEM :=SOA
IS_CHEM_SET :=1
endif
# %%%%% Test if CHEM=SOA_SVPOA %%%%%
REGEXP :=(^[Ss][Oo][Aa]_[Ss][Vv][Pp][Oo][Aa])
ifeq ($(shell [[ "$(CHEM)" =~ $(REGEXP) ]] && echo true),true)
KPP_CHEM :=SOA_SVPOA
IS_CHEM_SET :=1
endif
# %%%%% Test if CHEM=NOx_Ox_HC_Aer_Br %%%%%
REGEXP :=(^[Nn][Oo][Xx]_[Oo][Xx]_[Hh][Cc]_[Aa][Ee][Rr]_[Bb][Rr])
ifeq ($(shell [[ "$(CHEM)" =~ $(REGEXP) ]] && echo true),true)
KPP_CHEM :=NOx_Ox_HC_Aer_Br
IS_CHEM_SET :=1
endif
# %%%%% Test if CHEM=tropchem (synonym for NOx_Ox_HC_Aer_Br) %%%%%
REGEXP :=(^[Tt][Rr][Oo][Pp][Cc][Hh][Ee][Mm])
ifeq ($(shell [[ "$(CHEM)" =~ $(REGEXP) ]] && echo true),true)
KPP_CHEM :=NOx_Ox_HC_Aer_Br
IS_CHEM_SET :=1
endif
# %%%%% Default setting: CHEM=benchmark %%%%%
ifeq ($(IS_CHEM_SET),0)
KPP_CHEM :=benchmark
IS_CHEM_SET :=1
endif
#------------------------------------------------------------------------------
# UCX stratospheric-tropospheric chemistry settings
#------------------------------------------------------------------------------
# %%%%% UCX %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(UCX)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DUCX
NO_REDUCED :=yes
endif
#------------------------------------------------------------------------------
# RRTMG radiative transfer model settings
#------------------------------------------------------------------------------
# %%%%% RRTMG %%%%%
RRTMG_NEEDED :=0
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(RRTMG)" =~ $(REGEXP) ]] && echo true),true)
RRTMG_NEEDED :=1
USER_DEFS += -DRRTMG
endif
#------------------------------------------------------------------------------
# Met field settings
#------------------------------------------------------------------------------
# If the user has omitted MET, then throw an error UNLESS we are trying
# to compile with "clean", "distclean", "realclean", "doc", "help",
# "ncdfcheck", or "libnc". These targets don't depend on the value of MET.
ifndef MET
REGEXP :=($clean|^doc|^help|^libnc|^ncdfcheck|gigc_debug|the_nuclear_option|wipeout|wipeout.|baselib.)
ifeq ($(shell [[ "$(MAKECMDGOALS)" =~ $(REGEXP) ]] && echo true),true)
NO_MET_NEEDED :=1
else
$(error $(ERR_MET))
endif
endif
# We can skip the following checks for targets that don't require MET
ifndef NO_MET_NEEDED
# %%%%% GCAP %%%%%
REGEXP :=(^[Gg][Cc][Aa][Pp])
ifeq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DGCAP
endif
# %%%%% GEOS-4 %%%%%
REGEXP :=((^[Gg][Ee][Oo][Ss])?4|.4)
ifeq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DGEOS_4
endif
# %%%%% GEOS-5 %%%%%
REGEXP :=((^[Gg][Ee][Oo][Ss])?5|.5)
ifeq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DGEOS_5
endif
# %%%%% MERRA or MERRA2 %%%%%
# We have to employ a double regexp test in order to prevent
# inadvertently setting MERRA if we want MERRA2. (bmy, 8/11/15)
REGEXP :=(^[Mm][Ee][Rr][Rr][Aa])
ifeq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
REGEXP :=(^[Mm][Ee][Rr][Rr][Aa]2|^[Mm][Ee][Rr][Rr][Aa].2)
ifeq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DMERRA2
else
USER_DEFS += -DMERRA
endif
endif
# %%%%% GEOS-FP %%%%%
REGEXP :=(^[Gg][Ee][Oo][Ss][Ff][Pp])|(^[Gg][Ee][Oo][Ss].[Ff][Pp])
ifeq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DGEOS_FP
endif
# %%%%% REDUCED VERTICAL GRID (default, unless specified otherwise) %%%%
ifndef NO_REDUCED
USER_DEFS += -DGRIDREDUCED
else
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(NO_REDUCED)" =~ $(REGEXP) ]] && echo true),true)
endif
endif
# %%%%% ERROR CHECK! Make sure our MET selection is valid! %%%%%
REGEXP :=(\-DGCAP|\-DGEOS_4|\-DGEOS_5|\-DMERRA|\-DGEOS_FP|\-DMERRA2)
ifneq ($(shell [[ "$(USER_DEFS)" =~ $(REGEXP) ]] && echo true),true)
$(error $(ERR_MET))
endif
endif # NO_MET_NEEDED
#------------------------------------------------------------------------------
# Horizontal grid settings
#------------------------------------------------------------------------------
# We can skip the following checks for targets that don't require GRID
# If the user has omitted GRID, then throw an error UNLESS we are trying
# to compile with "clean", "distclean", "realclean", "doc", "help",
# "ncdfcheck", or "libnc". These targets don't depend on the value of GRID.
ifndef NO_GRID_NEEDED
ifndef GRID
REGEXP :=($clean|^doc|^help|^libnc|^ncdfcheck|gigc_debug|the_nuclear_option|wipeout|wipeout.|baselib.|^wipeout)
ifeq ($(shell [[ $(MAKECMDGOALS) =~ $(REGEXP) ]] && echo true),true)
NO_GRID_NEEDED :=1
else
$(error $(ERR_GRID))
endif
endif
endif
# We can skip the following checks for targets that don't require GRID
ifndef NO_GRID_NEEDED
# %%%%% 4 x 5 %%%%%
REGEXP :=(^4.5|^4\.0.5\.0)
ifeq ($(shell [[ "$(GRID)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DGRID4x5
endif
# %%%%% 2 x 2.5 %%%%%
REGEXP :=(^2.25|^2.2\.5|^2\.0.2\.5)
ifeq ($(shell [[ "$(GRID)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DGRID2x25
endif
# %%%%% 1 x 1.25 %%%%%
REGEXP :=(^1.125|^1.1\.25|^1\.0.1\.25)
ifeq ($(shell [[ "$(GRID)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DGRID1x125
endif
# %%%%% 0.5 x 0.666 %%%%%
REGEXP :=(^05.066.|^0\.5.0\.066.)
ifeq ($(shell [[ "$(GRID)" =~ $(REGEXP) ]] && echo true),true)
# Ensure that MET=geos5
REGEXP := ((^[Gg][Ee][Oo][Ss])?5|.5)
ifneq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
$(error When GRID=05x0666, you can only use MET=geos5)
endif
# Ensure that a nested-grid option is selected
ifndef NEST
$(error $(ERR_NEST))
else
NEST_NEEDED :=1
USER_DEFS += -DGRID05x0666
endif
endif
# %%%%% 0.5 x 0.625 %%%%%
REGEXP :=(^05.0625|^0\.5.0\.625)
ifeq ($(shell [[ "$(GRID)" =~ $(REGEXP) ]] && echo true),true)
# Ensure that MET=geos-fp
REGEXP :=(^[Mm][Ee][Rr][Rr][Aa]2)|(^[Mm][Ee][Rr][Rr][Aa].2)
ifneq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
$(error When GRID=05x0625, you can only use MET=merra2)
endif
# Ensure that a nested-grid option is selected
ifndef NEST
$(error $(ERR_NEST))
else
NEST_NEEDED :=1
USER_DEFS += -DGRID05x0625
endif
endif
# %%%%% 0.25 x 0.3125 %%%%%
REGEXP :=(^025.03125|^0\.25.0\.3125)
ifeq ($(shell [[ "$(GRID)" =~ $(REGEXP) ]] && echo true),true)
# Ensure that MET=geos-fp
REGEXP :=(^[Gg][Ee][Oo][Ss][Ff][Pp])|(^[Gg][Ee][Oo][Ss].[Ff][Pp])
ifneq ($(shell [[ "$(MET)" =~ $(REGEXP) ]] && echo true),true)
$(error When GRID=025x03125, you can only use MET=geos-fp)
endif
# Ensure that a nested-grid option is selected
ifndef NEST
$(error $(ERR_NEST))
else
NEST_NEEDED :=1
USER_DEFS += -DGRID025x03125
endif
endif
# %%%%% ERROR CHECK! Make sure our GRID selection is valid! %%%%%
REGEXP := ((\-DGRID)?4x5|2x25|1x125|05x0666|05x0625|025x03125)
ifneq ($(shell [[ "$(USER_DEFS)" =~ $(REGEXP) ]] && echo true),true)
$(error $(ERR_GRID))
endif
#------------------------------------------------------------------------------
# Nested grid settings
#------------------------------------------------------------------------------
# %%%%% China (CH) %%%%%
REGEXP :=(^[Cc][Hh])
ifeq ($(shell [[ "$(NEST)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DNESTED_CH
endif
# %%%%% Europe (EU) %%%%%
REGEXP :=(^[Ee][Uu])
ifeq ($(shell [[ "$(NEST)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DNESTED_EU
endif
# %%%%% North America (NA) %%%%%
REGEXP :=(^[Nn][Aa])
ifeq ($(shell [[ "$(NEST)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DNESTED_NA
endif
# %%%%% SE Asia (SE) %%%%%
REGEXP :=(^[Ss][Ee])
ifeq ($(shell [[ "$(NEST)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DNESTED_SE
endif
# %%%%% Custom (CU) %%%%%
REGEXP :=(^[Cc][Uu])
ifeq ($(shell [[ "$(NEST)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DNESTED_CU
endif
# %%%%% ERROR CHECK! Make sure our NEST selection is valid! %%%%%
ifdef NEST_NEEDED
REGEXP :=((\-DNESTED_)?CH|NA|EU|SE|CU)
ifneq ($(shell [[ "$(USER_DEFS)" =~ $(REGEXP) ]] && echo true),true)
$(error $(ERR_NEST))
endif
endif
endif # NO_GRID_NEEDED
#------------------------------------------------------------------------------
# Coupled grid settings (yanyy,6/18/14)
#------------------------------------------------------------------------------
# %%%%% Couple %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(COUPLE)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE
endif
# %%%%% China (CH) and 4x5 %%%%%
REGEXP :=(^4.5[Cc][Hh]|^4\.0.5\.0[Cc][Hh])
ifeq ($(shell [[ "$(COUPLECH)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_4x5_CH
endif
# %%%%% Europe (EU) and 4x5 %%%%%
REGEXP :=(^4.5[Ee][Uu]|^4\.0.5\.0[Ee][Uu])
ifeq ($(shell [[ "$(COUPLEEU)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_4x5_EU
endif
# %%%%% North America (NA) and 4x5 %%%%%
REGEXP :=(^4.5[Nn][Aa]|^4\.0.5\.0[Nn][Aa])
ifeq ($(shell [[ "$(COUPLENA)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_4x5_NA
endif
# %%%%% SE Asia (SE) and 4x5 %%%%%
REGEXP :=(^4.5[Nn][Aa]|^4\.0.5\.0[Nn][Aa])
ifeq ($(shell [[ "$(COUPLESE)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_4x5_SE
endif
# %%%%% China (CH) and 2x2.5 %%%%%
REGEXP :=(^2.25[Cc][Hh]|^2.2\.5[Cc][Hh]|^2\.0.2\.5[Cc][Hh])
ifeq ($(shell [[ "$(COUPLECH)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_2x25_CH
endif
# %%%%% Europe (EU) and 2x2.5 %%%%%
REGEXP :=(^2.25[Ee][Uu]|^2.2\.5[Ee][Uu]|^2\.0.2\.5[Ee][Uu])
ifeq ($(shell [[ "$(COUPLEEU)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_2x25_EU
endif
# %%%%% North America (NA) and 2x2.5 %%%%%
REGEXP :=(^2.25[Nn][Aa]|^2.2\.5[Nn][Aa]|^2\.0.2\.5[Nn][Aa])
ifeq ($(shell [[ "$(COUPLENA)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_2x25_NA
endif
# %%%%% SE Asia (SE) and 2x2.5 %%%%%
REGEXP :=(^2.25[Nn][Aa]|^2.2\.5[Nn][Aa]|^2\.0.2\.5[Nn][Aa])
ifeq ($(shell [[ "$(COUPLESE)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DEXCHANGE -DEXCHANGE_2x25_SE
endif
# %%%%% ERROR CHECK! Make sure our NEST selection is valid! %%%%%
ifdef COUPLE_NEEDED
REGEXP :=((\-DEXCHANGE_)?CH|NA|EU)
ifneq ($(shell [[ "$(USER_DEFS)" =~ $(REGEXP) ]] && echo true),true)
$(error $(ERR_COUPLE))
endif
endif
#------------------------------------------------------------------------------
# Aerosol microphysics settings
#------------------------------------------------------------------------------
# %%%%% TOMAS, 30 bins (default) %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(TOMAS)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DTOMAS
endif
# %%%%% TOMAS, 40 bins %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(TOMAS40)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DTOMAS -DTOMAS40
endif
# %%%%% TOMAS, 15 bins %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(TOMAS15)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DTOMAS -DTOMAS15
endif
# %%%%% TOMAS, 12 bins %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(TOMAS12)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DTOMAS -DTOMAS12
endif
# %%%%% APM %%%%%
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(APM)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DAPM
endif
#------------------------------------------------------------------------------
# Special chemistry settings
#------------------------------------------------------------------------------
# Activate Global Terrestrial Mercury Model (GTMM) if necessary
GTMM_NEEDED :=0
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(GTMM_Hg)" =~ $(REGEXP) ]] && echo true),true)
GTMM_NEEDED :=1
USER_DEFS += -DGTMM_Hg
endif
# Option to turn off ISORROPIA for testing
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(NO_ISO)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DNO_ISORROPIA
endif
# Specify year of tagged O3 prod/loss data
# NOTE: THIS IS OBSOLETE W/ HEMCO! (bmy, 11/21/14)
ifdef TAGO3YR
USER_DEFS += -DUSE_THIS_O3_YEAR=$(TAGO3YR)
endif
#------------------------------------------------------------------------------
# TAU Performance Profiling (only works w/ IFORT for now)
#------------------------------------------------------------------------------
ifeq ($(COMPILER),ifort)
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(TAU_PROF)" =~ $(REGEXP) ]] && echo true),true)
COMPILE_CMD :=tau_f90.sh
endif
endif
#------------------------------------------------------------------------------
# Add test for mass conservation
#------------------------------------------------------------------------------
REGEXP :=(^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(MASSCONS)" =~ $(REGEXP) ]] && echo true),true)
USER_DEFS += -DMASSCONS
endif
###############################################################################
### ###
### Set linker commands for local and external libraries (incl. netCDF) ###
### ###
###############################################################################
# netCDF Library include path.
# Test if a separate netcdf-fortran library is specified.
ifdef GC_F_INCLUDE
# NC_INC_CMD := -I$(GC_INCLUDE) -I$(GC_F_INCLUDE)
NC_INC_CMD := -I$(GC_INCLUDE) -L$(GC_LIB) -lnetcdf -L$(GC_F_LIB) -lnetcdff -L$(GC_HDF5_LIB) -lhdf5_hl -lhdf5_fortran -lhdf5hl_fortran -lhdf5 -lsz -lz -DUSE_HDF5
else
# NC_INC_CMD := -I$(GC_INCLUDE)
NC_INC_CMD := -I$(GC_INCLUDE) -L$(GC_LIB) -lnetcdf -L$(GC_F_LIB) -lnetcdff -L$(GC_HDF5_LIB) -lhdf5_hl -lhdf5_fortran -lhdf5hl_fortran -lhdf5 -lsz -lz -DUSE_HDF5
endif
# CLMW: save as HDF5 rather than bpch
#NC_INC_CMD := -I/home/r/rmartin/chili/geos-chem-libraries-intel11/rhel6-build/include -L/home/r/rmartin/chili/geos-chem-libraries-intel11/rhel6-build/lib -lnetcdf -lnetcdff -lhdf5_hl -lhdf5_fortran -lhdf5hl_fortran -lhdf5 -lsz -lz -DUSE_HDF5
# Get the version number (e.g. "4130"=netCDF 4.1.3; "4200"=netCDF 4.2, etc.)
NC_VERSION :=$(shell $(GC_BIN)/nc-config --version)
NC_VERSION :=$(shell echo "$(NC_VERSION)" | sed 's|netCDF ||g')
NC_VERSION :=$(shell echo "$(NC_VERSION)" | sed 's|\.||g')
NC_VERSION_LEN :=$(shell perl -e "print length $(NC_VERSION)")
ifeq ($(NC_VERSION_LEN),3)
NC_VERSION :=$(NC_VERSION)0
endif
ifeq ($(NC_VERSION_LEN),2)
NC_VERSION :=$(NC_VERSION)00
endif
# Test if we have at least netCDF 4.2.0.0
AT_LEAST_NC_4200 :=$(shell perl -e "print ($(NC_VERSION) ge 4200)")
ifeq ($(AT_LEAST_NC_4200),1)
#-------------------------------------------------------------------------
# netCDF 4.2 and higher:
# Use "nf-config --flibs" and "nc-config --libs"
# Test if a separate netcdf-fortran path is specified
#-------------------------------------------------------------------------
ifdef GC_F_BIN
NC_LINK_CMD := $(shell $(GC_F_BIN)/nf-config --flibs)
else
NC_LINK_CMD := $(shell $(GC_BIN)/nf-config --flibs)
endif
NC_LINK_CMD += $(shell $(GC_BIN)/nc-config --libs)
else
#-----------------------------------------------------------------------
# Prior to netCDF 4.2:
# Use "nc-config --flibs" and nc-config --libs
#-----------------------------------------------------------------------
NC_LINK_CMD := $(shell $(GC_BIN)/nc-config --flibs)
endif
#=============================================================================
#%%%%% FIX FOR USE WITH THE GEOS-Chem-Libraries (bmy, 1/13/15)
#%%%%%
#%%%%% If your GEOS-Chem-Libraries netCDF/HDF5 package was built in one
#%%%%% directory and then moved somewhere else, then nf-config and nc-config
#%%%%% may not return the proper link directory path.
#%%%%%
#%%%%% To avoid this error, we shall test if the $GC_LIB environment variable
#%%%%% contains the text "GEOS-Chem-Libraries". (Recall that $GC_LIB is
#%%%%% defined in either your .bashrc or .cshrc file depending on which Unix
#%%%%% shell you use.) If we find the text "GEOS-Chem-Libraries" in $GC_LIB,
#%%%%% then we shall override the library path returned by nf-config and
#%%%%% nc-config with the path specified by $GC_LIB. This will ensure that
#%%%%% we point to the location where the GEOS-Chem-Libraries are installed.
#%%%%%
#%%%%% NOTE: This fix should work for most users. If it does not work, then
#%%%%% contact the GEOS-Chem Support Team ([email protected]).
#%%%%%
REGEXP :="GEOS-Chem-Libraries"
ifeq ($(shell [[ "$(GC_LIB)" =~ $(REGEXP) ]] && echo true),true) # CLMW - change to output as HDF5
#NC_LINK_CMD := $(filter -l%,$(NC_LINK_CMD))
#NC_LINK_CMD :=-L$(GC_LIB) $(NC_LINK_CMD)
NC_LINK_CMD := -L/home/r/rmartin/chili/geos-chem-libraries-intel11/rhel6-build/lib -lnetcdf -lnetcdff -lhdf5_hl -lhdf5_fortran -lhdf5hl_fortran -lhdf5 -lsz -lz -DUSE_HDF5
NCL := -L/home/r/rmartin/chili/geos-chem-libraries-intel11/rhel6-build/lib -lnetcdf -lnetcdff -lhdf5_hl -lhdf5_fortran -lhdf5hl_fortran -lhdf5 -lsz -lz -DUSE_HDF5
endif
#=============================================================================
# Save for backwards compatibility
NCL := $(NC_LINK_CMD) # commented out CLMW
#----------------------------
# For GEOS-Chem
#----------------------------
# Base linker command: specify the library directory
LINK :=-L$(LIB)
# Append library for GTMM, if necessary
ifeq ($(GTMM_NEEDED),1)
LINK :=$(LINK) -lHg
endif
# Append library for RRTMG, if necessary
ifeq ($(RRTMG_NEEDED),1)
LINK :=$(LINK) -lrad
endif
# Create linker command to create the GEOS-Chem executable
LINK :=$(LINK) -lIsoropia -lHCOI -lHCOX -lHCO -lGeosUtil -lKpp
#LINK :=$(LINK) -lHeaders -lNcUtils $(NC_LINK_CMD)
# CLMW: Save as HDF5 rather than bpch
LINK :=$(LINK) -lHeaders -lNcUtils $(NC_LINK_CMD) -L$(GC_LIB) -lnetcdf -L$(GC_F_LIB) -lnetcdff -L$(GC_HDF5_LIB) -lhdf5_hl -lhdf5_fortran -lhdf5hl_fortran -lhdf5 -lsz -lz -DUSE_HDF5
#----------------------------
# For the HEMCO standalone
#----------------------------
# Create linker command to create the HEMCO standalone executable
LINK_HCO :=-L$(LIB) -lHCOI -lHCOX -lHCO -lGeosUtil -lHeaders
LINK_HCO :=$(LINK_HCO) -lNcUtils $(NC_LINK_CMD)
###############################################################################
### ###
### HPC Settings: Build & use ESMF & MAPL for Grid-Independent GEOS-Chem ###
### ###
###############################################################################
# If we are building w/ the HPC target, then include GIGC.mk as well
# Determine if we are building with the hpc target
ifeq ($(HPC),yes)
ifneq ("$(wildcard $(CURDIR)/../GIGC/GIGC.mk)","")
include $(CURDIR)/../GIGC/GIGC.mk
else
ifneq ("$(wildcard $(CURDIR)/../../GIGC/GIGC.mk)","")
include $(CURDIR)/../../GIGC/GIGC.mk
else
$(error $(ERR_GIGC))
endif
endif
#FFLAGS += -double-size 32 -real-size 32 -r4
endif
###############################################################################
### ###
### Define settings for the INTEL FORTRAN COMPILER (aka ifort) ###
### ###
###############################################################################
ifeq ($(COMPILER),ifort)
# Base set of compiler flags
FFLAGS :=-cpp -w -auto -noalign -convert big_endian
# Default optimization level for all routines (-O2)
ifndef OPT
OPT := -O2
endif
# Pick compiler options for debug run or regular run
REGEXP := (^[Yy]|^[Yy][Ee][Ss])
ifeq ($(shell [[ "$(DEBUG)" =~ $(REGEXP) ]] && echo true),true)
FFLAGS += -g -O0 -check arg_temp_created -debug all
TRACEBACK := yes
USER_DEFS += -DDEBUG
else
FFLAGS += $(OPT) -vec-report0
endif