# svn $Id: Linux-path.mk 889 2018-02-10 03:32:52Z arango $ #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # Copyright (c) 2002-2019 The ROMS/TOMS Group ::: # Licensed under a MIT/X style license ::: # See License_ROMS.txt ::: #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # # Include file for PathScale compiler on Linux # ------------------------------------------------------------------------- # # ARPACK_LIBDIR ARPACK libary directory # FC Name of the fortran compiler to use # FFLAGS Flags to the fortran compiler # CPP Name of the C-preprocessor # CPPFLAGS Flags to the C-preprocessor # CC Name of the C compiler # CFLAGS Flags to the C compiler # CXX Name of the C++ compiler # CXXFLAGS Flags to the C++ compiler # CLEAN Name of cleaning executable after C-preprocessing # NETCDF_INCDIR NetCDF include directory # NETCDF_LIBDIR NetCDF libary directory # LD Program to load the objects into an executable # LDFLAGS Flags to the loader # RANLIB Name of ranlib command # MDEPFLAGS Flags for sfmakedepend (-s if you keep .f files) # # First the defaults # FC := pathf95 FFLAGS := -march=auto -mcpu=auto -mtune=auto -u CPP := /usr/bin/cpp CPPFLAGS := -P -traditional -I/usr/include CC := gcc CXX := g++ CFLAGS := CXXFLAGS := LDFLAGS := AR := ar ARFLAGS := r MKDIR := mkdir -p RM := rm -f RANLIB := ranlib PERL := perl TEST := test MDEPFLAGS := --cpp --fext=f90 --file=- --objdir=$(SCRATCH_DIR) # # Names of module files for netCDF f90 interface: override the lower-case # file names specified in makefile # NETCDF_MODFILE := NETCDF.mod TYPESIZES_MODFILE := TYPESIZES.mod # # Library locations, can be overridden by environment variables. # ifdef USE_LARGE FFLAGS += -m64 endif ifdef USE_NETCDF4 NF_CONFIG ?= nf-config NETCDF_INCDIR ?= $(shell $(NF_CONFIG) --prefix)/include LIBS := $(shell $(NF_CONFIG) --flibs) else NETCDF_INCDIR ?= /usr/local/include NETCDF_LIBDIR ?= /usr/local/lib LIBS := -L$(NETCDF_LIBDIR) -lnetcdf -lnetcdff endif ifdef USE_ARPACK ifdef USE_MPI PARPACK_LIBDIR ?= /opt/pathscalesoft/PARPACK LIBS += -L$(PARPACK_LIBDIR) -lparpack endif ARPACK_LIBDIR ?= /opt/pathscalesoft/PARPACK LIBS += -L$(ARPACK_LIBDIR) -larpack endif ifdef USE_MPI CPPFLAGS += -DMPI ifdef USE_MPIF90 FC := mpif90 else LIBS += -lfmpi-pgi -lmpi-pgi endif endif ifdef USE_OpenMP CPPFLAGS += -D_OPENMP FFLAGS += -mp endif ifdef USE_DEBUG FFLAGS += -g -C CFLAGS += -g CXXFLAGS += -g else # FFLAGS += -Ofast # FFLAGS += -O3 -OPT:Ofast -fno-math-errno -ffast-math FFLAGS += -O2 # FFLAGS += -O1 CFLAGS += -O3 CXXFLAGS += -O3 endif ifdef USE_ESMF ESMF_OS ?= $(OS) ESMF_SUBDIR := $(ESMF_OS).$(ESMF_COMPILER).$(ESMF_ABI).$(ESMF_COMM).$(ESMF_SITE) ESMF_MK_DIR ?= $(ESMF_DIR)/lib/lib$(ESMF_BOPT)/$(ESMF_SUBDIR) include $(ESMF_MK_DIR)/esmf.mk FFLAGS += $(ESMF_F90COMPILEPATHS) LIBS += $(ESMF_F90LINKPATHS) $(ESMF_F90ESMFLINKLIBS) endif ifdef USE_CXX LIBS += -lstdc++ endif ifdef USE_MCT MCT_INCDIR ?= /usr/local/mct/include MCT_LIBDIR ?= /usr/local/mct/lib FFLAGS += -I$(MCT_INCDIR) LIBS += -L$(MCT_LIBDIR) -lmct -lmpeu endif ifdef USE_WRF FFLAGS += -I$(WRF_DIR)/main -I$(WRF_DIR)/external/esmf_time_f90 -I$(WRF_DIR)/frame -I$(WRF_DIR)/share LIBS += WRF/main/module_wrf_top.o LIBS += WRF/main/libwrflib.a LIBS += WRF/external/fftpack/fftpack5/libfftpack.a LIBS += WRF/external/io_grib1/libio_grib1.a LIBS += WRF/external/io_grib_share/libio_grib_share.a LIBS += WRF/external/io_int/libwrfio_int.a LIBS += WRF/external/esmf_time_f90/libesmf_time.a LIBS += WRF/external/RSL_LITE/librsl_lite.a LIBS += WRF/frame/module_internal_header_util.o LIBS += WRF/frame/pack_utils.o LIBS += WRF/external/io_netcdf/libwrfio_nf.a # LIBS += WRF/external/io_netcdf/wrf_io.o endif ifdef USE_WW3 FFLAGS += -I${COAWST_WW3_DIR}/mod_DIST/ LIBS += WW3/obj/libWW3.a endif # # Use full path of compiler. # FC := $(shell which ${FC}) LD := $(FC) # # Set free form format in source files to allow long string for # local directory and compilation flags inside the code. # $(SCRATCH_DIR)/mod_ncparam.o: FFLAGS += -freeform $(SCRATCH_DIR)/mod_strings.o: FFLAGS += -freeform $(SCRATCH_DIR)/analytical.o: FFLAGS += -freeform $(SCRATCH_DIR)/biology.o: FFLAGS += -freeform ifdef USE_ADJOINT $(SCRATCH_DIR)/ad_biology.o: FFLAGS += -freeform endif ifdef USE_REPRESENTER $(SCRATCH_DIR)/rp_biology.o: FFLAGS += -freeform endif ifdef USE_TANGENT $(SCRATCH_DIR)/tl_biology.o: FFLAGS += -freeform endif # # Supress free format in SWAN source files since there are comments # beyond column 72. # ifdef USE_SWAN $(SCRATCH_DIR)/ocpcre.o: FFLAGS += -fixedform $(SCRATCH_DIR)/ocpids.o: FFLAGS += -fixedform $(SCRATCH_DIR)/ocpmix.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swancom1.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swancom2.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swancom3.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swancom4.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swancom5.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swanmain.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swanout1.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swanout2.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swanparll.o:FFLAGS += -fixedform $(SCRATCH_DIR)/swanpre1.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swanpre2.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swanser.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swmod1.o: FFLAGS += -fixedform $(SCRATCH_DIR)/swmod2.o: FFLAGS += -fixedform $(SCRATCH_DIR)/SwanSpectPart.o:FFLAGS += -fixedform $(SCRATCH_DIR)/m_constants.o: FFLAGS += -freeform $(SCRATCH_DIR)/m_fileio.o: FFLAGS += -freeform $(SCRATCH_DIR)/mod_xnl4v5.o: FFLAGS += -freeform $(SCRATCH_DIR)/serv_xnl4v5.o: FFLAGS += -freeform $(SCRATCH_DIR)/nctablemd.o: FFLAGS += -freeform $(SCRATCH_DIR)/agioncmd.o: FFLAGS += -freeform $(SCRATCH_DIR)/swn_outnc.o: FFLAGS += -freeform $(SCRATCH_DIR)/SdsBabanin.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanBpntlist.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanCheckGrid.o:FFLAGS += -freeform $(SCRATCH_DIR)/SwanCompdata.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanCompUnstruc.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanComputeForce.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanConvAccur.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanConvStopc.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanCreateEdges.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanCrossObstacle.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanDiffPar.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanDispParm.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanFindObstacles.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanFindPoint.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanGridCell.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanGriddata.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanGridFace.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanGridobjects.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanGridTopology.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanGridVert.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanGSECorr.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanInitCompGrid.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanInterpolateAc.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanInterpolateOutput.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanInterpolatePoint.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanIntgratSpc.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanPointinMesh.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanPrepComp.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanPrintGridInfo.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanPropvelS.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanPropvelX.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanReadADCGrid.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanReadEasymeshGrid.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanReadGrid.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanReadTriangleGrid.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanSweepSel.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanThreadBounds.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanTranspAc.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanTranspX.o: FFLAGS += -freeform $(SCRATCH_DIR)/SwanVertlist.o: FFLAGS += -freeform $(SCRATCH_DIR)/waves_control.o: FFLAGS += -freeform $(SCRATCH_DIR)/waves_coupler.o: FFLAGS += -freeform endif