summaryrefslogtreecommitdiff
path: root/math/lapacke/files
diff options
context:
space:
mode:
authorBrendan Fabeny <bf@FreeBSD.org>2011-10-23 09:04:04 +0000
committerBrendan Fabeny <bf@FreeBSD.org>2011-10-23 09:04:04 +0000
commitc677922c26975abb959b4fc3ac09a885d71ec1d7 (patch)
treee8ebdde851dad0dcdea8e4657d5a7b7405e50e76 /math/lapacke/files
parent- Add p5-Bash-Completion 0.008 (diff)
correct linking and dependency tests; remove MAKE_ENV
additions needed only on FreeBSD 6.* from math/levmar; patch a makefile of, and add an option to build profiling libraries to, math/lapacke; mark MAKE_JOBS_SAFE PR: 161154, 161155 Submitted by: E. Shibusawa (maintainer)
Diffstat (limited to 'math/lapacke/files')
-rw-r--r--math/lapacke/files/patch-make.inc2
-rw-r--r--math/lapacke/files/patch-testing+Makefile16
2 files changed, 17 insertions, 1 deletions
diff --git a/math/lapacke/files/patch-make.inc b/math/lapacke/files/patch-make.inc
index 3dc94d1aed69..e7d8353c08ea 100644
--- a/math/lapacke/files/patch-make.inc
+++ b/math/lapacke/files/patch-make.inc
@@ -18,7 +18,7 @@
-LAPACKE = lapacke.a
-LIBS = ../../../lapack-3.2.1/lapack.a ../../../lapack-3.2.1/blas.a -lm
+LAPACKE = ./lib/liblapacke.a
-+LIBS = %%BLAS%% %%LAPACK%%
++LIBS = %%LAPACK%% %%BLAS%%
#
# The archiver and the flag(s) to use when building archive (library)
# If your system has no ranlib, set RANLIB = echo.
diff --git a/math/lapacke/files/patch-testing+Makefile b/math/lapacke/files/patch-testing+Makefile
new file mode 100644
index 000000000000..fab617b08eb3
--- /dev/null
+++ b/math/lapacke/files/patch-testing+Makefile
@@ -0,0 +1,16 @@
+--- ./testing/Makefile.orig 2010-10-01 17:17:25.000000000 +0900
++++ ./testing/Makefile 2011-09-30 19:38:00.000000000 +0900
+@@ -35,9 +35,9 @@
+ include ../make.inc
+
+ all:
+- cd utils && $(MAKE)
+- cd interface && $(MAKE)
++ cd ${.CURDIR}/utils && $(MAKE)
++ cd ${.CURDIR}/interface && $(MAKE)
+
+ clean:
+- cd utils && $(MAKE) clean
+- cd interface && $(MAKE) clean
++ cd ${.CURDIR}/utils && $(MAKE) clean
++ cd ${.CURDIR}/interface && $(MAKE) clean