aix.mk

来自「Delaunay三角形的网格剖分程序」· MK 代码 · 共 61 行

MK
61
字号
#IBM AIX RS6000, Vendor OpenGLSHELL=/bin/shoptions= -Dfortran ############################################################################cc=xlcccinc=ccopt= -O2  ############################################################################cxx=xlCcxxinc=cxxopt= -O2 -DKASKADE_LIB -DPRAGMA_DEFINE_TEMPLATE -DNO_COMPLEX_TEMPLATE############################################################################fc=xlfffopt=-O3 ############################################################################fortlibs=-lxlfgrlibs=-l$(MESA)GL -l$(MESA)GLU -lXext  -lX11  -lm############################################################################## Make variables uses by pdelib make system:#arch_loadlibes=$(fortlibs) $(grlibs) -ldlarch_ldflags=-L$(LIBDIR) $(track)arch_shldflags=-bM:SREarch_ranlib=truearch_cflags=$(options) $(ccinc) $(ccopt)arch_cxxflags=$(options) $(cxxinc) $(cxxopt)arch_fflags=$(ffopt)arch_cxx=$(cxx)arch_cc=$(cc)arch_fc=$(fc)arch_termcap=-ltermcap############################################################################# COMPILER/LIBRARY SYSDEPS#---------------------------------------------------------------------------# -DNOPROTO  : no protoyping# -DNOSTDARG : no /usr/include/stdarg.h# -DNOACPP   : no ansi cpp (token pasting)#  (these options can be combined)#---------------------------------------------------------------------------# -DBSD_TIMER   : use rusage()# -DPOSIX_TIMER : use times()# -DANSI_TIMER  : use clock() (default)#  (these options cannot be combined)#---------------------------------------------------------------------------# How the fortran compiler generates external names to be called from C:# -DFORTRAN   : CALL FOO(BAR) -> FOO(bar);# -DFORTRAN_  : CALL FOO(BAR) -> FOO_(bar);# -Dfortran   : CALL FOO(BAR) -> foo(bar);# -Dfortran_  : CALL FOO(BAR) -> foo_(bar); (default)#  (these options cannot be combined)#---------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?