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

📄 makefile

📁 完全使用C++写的高效线性代数运算库!还提供了矩阵类。
💻
字号:
#      LAPACK++ (v. 1.1 Beta)#      (C) 1992-1996 All Rights Reserved.##   	Test Code for Lapack++ drivers LAPACKPP_DIR = ..include ../makefile.def############################################################################### tSpdSolve and tSymmSolve not fully working#TESTS = tGenSolve TESTS = tGenSolve tSpdSolve  tutil tEigSolveall :  $(TESTS)tGenSolve: tGenSolve.o	$(CPP) $(CPPFLAGS) -o tGenSolve tGenSolve.o $(ALL_LAPACKPP_LIB)  -lmtSpdSolve: tSpdSolve.o	$(CPP) $(CPPFLAGS)  -o tSpdSolve tSpdSolve.o $(ALL_LAPACKPP_LIB) -lmtSymmSolve: tSymmSolve.o	$(CPP) $(CPPFLAGS) -o tSymmSolve tSymmSolve.o $(ALL_LAPACKPP_LIB)  -lmtutil: tutil.o	$(CPP) $(CPPFLAGS) -o tutil tutil.o $(ALL_LAPACKPP_LIB) -lmtEigSolve: tEigSolve.o	$(CPP) $(CPPFLAGS) -o tEigSolve tEigSolve.o $(ALL_LAPACKPP_LIB)  -lmtGenSolve.o  : $(LAPACKPP_INC)/lapack.h \	$(LAPACKPP_INC)/gmd.h $(LAPACKPP_INC)/lavd.h \	$(LAPACKPP_INC)/laslv.h  $(LAPACKPP_INC)/vd.h \	$(LAPACKPP_INC)/genmd.h \	$(LAPACKPP_INC)/laexcp.h $(LAPACKPP_INC)/blas++.h \	$(LAPACKPP_INC)/blas1++.h \	$(LAPACKPP_INC)/blas2++.h \	$(LAPACKPP_INC)/blas3++.h tSpdSolve.o  : $(LAPACKPP_INC)/lapack.h $(LAPACKPP_INC)/spdmd.h \	$(LAPACKPP_INC)/gmd.h $(LAPACKPP_INC)/lavd.h \	$(LAPACKPP_INC)/laslv.h  $(LAPACKPP_INC)/vd.h \	$(LAPACKPP_INC)/genmd.h \	$(LAPACKPP_INC)/laexcp.h $(LAPACKPP_INC)/blas++.h \	$(LAPACKPP_INC)/blas1++.h \	$(LAPACKPP_INC)/blas2++.h \	$(LAPACKPP_INC)/blas3++.h tSymmSolve.o  : $(LAPACKPP_INC)/lapack.h \	$(LAPACKPP_INC)/gmd.h $(LAPACKPP_INC)/lavd.h \	$(LAPACKPP_INC)/laslv.h  $(LAPACKPP_INC)/vd.h \	$(LAPACKPP_INC)/genmd.h \	$(LAPACKPP_INC)/laexcp.h $(LAPACKPP_INC)/blas++.h \	$(LAPACKPP_INC)/blas1++.h \	$(LAPACKPP_INC)/blas2++.h \	$(LAPACKPP_INC)/blas3++.h clean:	rm -f *.o out core *.out $(TESTS)wipe:	rm -f *.o out *.out core  $(TESTS).cc.o: 	$(CPP) $(PROFILE) $(CPPFLAGS) -c $<.c.o:	$(cc) $(PROFILE) -c $<.f.o:	$(F77) $(PROFILE) -c $<

⌨️ 快捷键说明

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