From: <i7...@us...> - 2012-06-07 11:48:31
|
Revision: 10578 http://octave.svn.sourceforge.net/octave/?rev=10578&view=rev Author: i7tiol Date: 2012-06-07 11:48:22 +0000 (Thu, 07 Jun 2012) Log Message: ----------- Allow user-specified LAPACK_LIBS or BLAS_LIBS. Modified Paths: -------------- trunk/octave-forge/main/optim/src/Makefile Modified: trunk/octave-forge/main/optim/src/Makefile =================================================================== --- trunk/octave-forge/main/optim/src/Makefile 2012-06-07 09:33:21 UTC (rev 10577) +++ trunk/octave-forge/main/optim/src/Makefile 2012-06-07 11:48:22 UTC (rev 10578) @@ -1,9 +1,9 @@ MKOCTFILE ?= mkoctfile -LAPACK_LIBS := $(shell $(MKOCTFILE) -p LAPACK_LIBS) +LAPACK_LIBS ?= $(shell $(MKOCTFILE) -p LAPACK_LIBS) # reported necessary for Apple's VecLib framework by Carlo de Falco # <car...@gm...> -BLAS_LIBS := $(shell $(MKOCTFILE) -p BLAS_LIBS) +BLAS_LIBS ?= $(shell $(MKOCTFILE) -p BLAS_LIBS) # Passing LFLAGS, supplemented with LAPACK_LIBS and BLAS_LIBS, in the # environment to mkoctfile is prefered over passing LAPACK_LIBS and This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |