⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 simplex Fortran code to find the minimum
💻
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -