blob: 6e7fda17e1f4f7d54f3c1afc21e5632a63bfd5b6 (
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
|
--- Makefile.orig Tue Jun 22 14:29:44 1999
+++ Makefile Tue Sep 21 21:02:17 1999
@@ -6,19 +6,20 @@
include make.inc
-all: install lib testing blas_testing timing blas_timing
+all: install lib # testing blas_testing timing blas_timing
-lib: lapacklib tmglib
+lib: lapacklib blaslib
#lib: blaslib lapacklib tmglib
clean: cleanlib cleantesting cleantiming
install:
- ( cd INSTALL; $(MAKE); testlsame; testslamch; \
- testdlamch; testsecond; testdsecnd; \
+ ( cd INSTALL; $(MAKE); ./testlsame; ./testslamch; \
+ ./testdlamch; ./testsecond; ./testdsecnd; \
cp lsame.f ../BLAS/SRC/; cp lsame.f ../SRC; \
cp slamch.f ../SRC/; cp dlamch.f ../SRC/; \
- cp second.f ../SRC/; cp dsecnd.f ../SRC/ )
+ cp second.f ../SRC/; cp dsecnd.f ../SRC/; \
+ cp etime_.c ../SRC/ )
blaslib:
( cd BLAS/SRC; $(MAKE) )
|