-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
47 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# DART software - Copyright UCAR. This open source software is provided | ||
# by UCAR, "as is", without charge, subject to all terms of use at | ||
# http://www.image.ucar.edu/DAReS/DART/DART_download | ||
# | ||
|
||
MPIFC = mpif90 | ||
MPILD = mpif90 | ||
FC = ifx | ||
LD = ifx | ||
|
||
# If your NETCDF environment variable is not set correctly, | ||
# uncomment the following line and set value to where lib and include | ||
# are found for the netcdf files that match this compiler. | ||
# | ||
# NETCDF = /opt/local | ||
|
||
INCS = -I$(NETCDF)/include | ||
LIBS = -L$(NETCDF)/lib -lnetcdff -lnetcdf | ||
FFLAGS = -O -assume buffered_io $(INCS) | ||
LDFLAGS = $(FFLAGS) $(LIBS) | ||
|
||
# for development or debugging, use this instead: | ||
# FFLAGS = -g -C -check noarg_temp_created -fpe0 \ | ||
# -fp-model precise -ftrapuv -traceback \ | ||
# -warn declarations,uncalled,unused $(INCS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters