makefile
来自「simplex Fortran code to find the minimum」· 代码 · 共 35 行
TXT
35 行
#Makefile for building subplexFORTRAN = f77OPTS = -OLOADER = f77OBJECTS = demo.oSUBPLEXLIB = subplex.a#Uncomment next two lines to link with system BLAS#SUBBLASLIB =#SYSBLASLIB = -lblas#Uncomment next two lines to link with subplex BLAS provided with distributionSUBBLASLIB = subblas.aSYSBLASLIB =SUBPLEXOBJECTS = calcc.o dist.o evalf.o fstats.o newpt.o order.o \ partx.o setstp.o simplx.o sortd.o start.o subopt.o \ subplx.oSUBBLASOBJECTS = dasum.o daxpy.o dcopy.o dscal.odemo: $(OBJECTS) $(SUBPLEXLIB) $(SUBBLASLIB) $(LOADER) $(OBJECTS) $(SUBPLEXLIB) $(SUBBLASLIB) $(SYSBLASLIB) -o demosubplex.a: $(SUBPLEXOBJECTS) ar cr subplex.a $(SUBPLEXOBJECTS) ranlib subplex.asubblas.a: $(SUBBLASOBJECTS) ar cr subblas.a $(SUBBLASOBJECTS) ranlib subblas.a.f.o: ; $(FORTRAN) $(OPTS) -c $<
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?