📄 make-p4.include
字号:
# Make include file for ARCH=P4U_ARCH = _$(ARCH) # debug flags for C compiler OPTFLAGS_D = -g# optimized flags for C compilerOPTFLAGS_O = -O3# default flags for C compiler (usually optimized)OPTFLAGS = $(OPTFLAGS_O)# C compiler#CC = accCC = gcc# C linkerCLINKER = $(CC)# debug flags for Fortran compilerFOPTFLAGS_D = -g# optimized flags for Fortran compilerFOPTFLAGS_O = -O3# default flags for Fortran compiler (usually optimized)FOPTFLAGS = $(FOPTFLAGS_O)# Fortran compilerF77 = gfortran# Fortran LinkerFLINKER = $(F77)# C/Fortran linkerCFLINKER = $(CLINKER)# -Bstatic added so you don't get link error when using # acc with C mixed with Fortran# use these with acc# debug linker flagsLFLAGS_D = -g -Bstatic# optimized linker flagsLFLAGS_O = -Bstatic# use these with gcc# debug linker flags#LFLAGS_D = -g -static# optimized linker flags#LFLAGS_O = -static# default linker flags (usually optimized)LFLAGS = $(LFLAGS_O)# where to get cppCPP = /lib/cpp# CPP flagsCPP_FLAGS = -DPRISM_P4# archiver to create librariesAR = ar clr# how to do ranlib on librariesRANLIB = ranlib# CPP options for code#PRISM_DEFINES = -DPRISM_P4 -DSTRAS_FORTRAN_ADD -DSTRAS_FORTRAN_SUBPRISM_DEFINES = -DPRISM_P4 -DSTRAS_BLAS_ADD -DSTRAS_BLAS_SUB # default uses STRAS_POINTER_ADD and STRAS_POINTER_SUB#PRISM_DEFINES = -DPRISM_P4# how to link in BLAS libraryBLAS_LIB = $(PRISM_BLAS_LIB)# how to link in LAPACK libraryLAPACK_LIB = $(PRISM_LAPACK_LIB)# path for librariesLIB_PATH = # what libraries to link inLIB_LIST = -lm# what clock to useOBJS_CLOCK = prism_time.o_$(ARCH)# machine specific objects that are neededOBJS_MACHINE =
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -