c93bf47f91
Linear Algebra PACKage in C++, a wrapper for LAPACK PR: 39653 Submitted by: Nakata Maho <chat95@mbox.kyoto-inet.or.jp>
29 lines
751 B
Text
29 lines
751 B
Text
--- makefile.org Tue Feb 29 05:42:30 2000
|
|
+++ makefile Mon May 20 10:21:52 2002
|
|
@@ -30,7 +30,7 @@
|
|
|
|
matrix_testing :
|
|
cd $(LAPACKPP_DIR)/matrix/testing; make;
|
|
- cd $(LAPACKPP_DIR)/matrix/testing; matrix_test
|
|
+ cd $(LAPACKPP_DIR)/matrix/testing; ./matrix_test
|
|
|
|
|
|
# C++ interface to the BLAS
|
|
@@ -41,7 +41,7 @@
|
|
|
|
blas++_testing:
|
|
cd $(LAPACKPP_DIR)/blaspp/testing; make;
|
|
- cd $(LAPACKPP_DIR)/blaspp/testing; blas++_test;
|
|
+ cd $(LAPACKPP_DIR)/blaspp/testing; ./blas++_test;
|
|
|
|
|
|
|
|
@@ -56,7 +56,7 @@
|
|
# (whose path is specified as $(TMGLIB)) be defined.
|
|
lapack++_testing :
|
|
cd $(LAPACKPP_DIR)/testing; make
|
|
- cd $(LAPACKPP_DIR)/testing; lapack++_test
|
|
+ cd $(LAPACKPP_DIR)/testing; ./lapack++_test
|
|
|
|
nolibs:
|
|
cd $(LAPACKPP_LIB_DIR); rm *.a
|