makefile
来自「LU矩阵分解单机版最新版本」· 代码 · 共 29 行
TXT
29 行
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 + =
减小字号Ctrl + -
显示快捷键?