ports/math/lapack/files/patch-ac
Jean-Marc Zucconi c5777122e6 Not everyone has `.' in his $PATH.
Submitted by:	tg
1997-02-20 23:28:09 +00:00

26 lines
793 B
Text

--- Makefile.orig Tue Oct 4 16:42:15 1994
+++ Makefile Wed Feb 19 16:05:52 1997
@@ -6,18 +6,19 @@
include make.inc
-all: install lib testing blas_testing timing blas_timing
+all: install lib # testing blas_testing timing blas_timing
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) )