📄 make-cray_t3d.include
字号:
# Make include file for ARCH=t3dU_ARCH = # debug flags for C compiler OPTFLAGS_D = -g -X 1 -I/usr/local/include/T3DUTIL# optimized flags for C compilerOPTFLAGS_O = -O3 -X 1 -I/usr/local/include/T3DUTIL# default flags for C compiler (usually optimized)OPTFLAGS = $(OPTFLAGS_O)# C compilerCC = /mpp/bin/cc# C linkerCLINKER = $(CC)# debug flags for Fortran compilerFOPTFLAGS_D = # optimized flags for Fortran compilerFOPTFLAGS_O = -O1# default flags for Fortran compiler (usually optimized)FOPTFLAGS = $(FOPTFLAGS_O)# Fortran compilerF77 = /mpp/bin/cf77 -X1 -I/usr/include/mpp # Fortran LinkerFLINKER = $(F77)# C/Fortran linkerCFLINKER = $(CLINKER)# debug linker flagsLFLAGS_D = -g# optimized linker flagsLFLAGS_O = # default linker flags (usually optimized)LFLAGS = $(LFLAGS_O)# where to get cppCPP = /mpp/bin/gpp# CPP flagsCPP_FLAGS = -DPRISM_T3D# archiver to create librariesAR = ar clr# how to do ranlib on librariesRANLIB = test -f# CPP options for codePRISM_DEFINES = -DPRISM_T3D -DSTRAS_BLAS_ADD -DSTRAS_BLAS_SUB#PRISM_DEFINES = -DPRISM_T3D -DSTRAS_FORTRAN_ADD -DSTRAS_FORTRAN_SUB# default uses STRAS_POINTER_ADD and STRAS_POINTER_SUB#PRISM_DEFINES = -DPRISM_T3D# 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 = # machine specific objects that are neededOBJS_MACHINE =
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -