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

📄 makefile

📁 SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems
💻
字号:
include ../make.inc########################################################################  This makefile creates the Fortran example interface to use the#  C routines in SuperLU.#######################################################################HEADER   = ../SRCLIBS	= ../$(SUPERLULIB) $(BLASLIB) -lmF77EXM	= f77_main.o hbcode1.o c_fortran_dgssv.oall:	f77exmf77exm: $(F77EXM) ../$(SUPERLULIB)	$(FORTRAN) $(LOADOPTS) $(F77EXM) $(LIBS) -o $@c_fortran_zgssv.o: c_fortran_zgssv.c	$(CC) $(CFLAGS) $(CDEFS) -I$(HEADER) -c $< $(VERBOSE).c.o:	$(CC) $(CFLAGS) $(CDEFS) -I$(HEADER) -c $< $(VERBOSE).f.o:	$(FORTRAN) $(FFLAGS) -c $< $(VERBOSE)clean:		rm -f *.o f77exm

⌨️ 快捷键说明

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