blob: 74c3ed73d33e4749a2dea975c1029ddee8494930 (
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
30
31
32
33
|
--- Makefile.orig Wed May 17 19:33:22 2000
+++ Makefile Wed Feb 8 19:59:57 2006
@@ -6,10 +6,17 @@
include make.inc
-all: install lib testing blas_testing timing blas_timing
+.if defined(ENABLE_TESTING) && ${ENABLE_TESTING} == "YES"
+all: install lib testing timing
+.else
+all: install lib
+.endif
-lib: lapacklib tmglib
-#lib: blaslib lapacklib tmglib
+.if defined(ENABLE_TESTING) && ${ENABLE_TESTING} == "YES"
+lib: blaslib lapacklib tmglib fpmclr_.o
+.else
+lib: lapacklib
+.endif
clean: cleanlib cleantesting cleantiming
@@ -18,7 +25,8 @@
./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) )
|