blob: 25dbcad8c8b759fb40659d862f66d286a6675155 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- 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
|