makefile

来自「完全使用C++写的高效线性代数运算库!还提供了矩阵类。」· 代码 · 共 77 行

TXT
77
字号
#      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 + =
减小字号Ctrl + -
显示快捷键?