summaryrefslogtreecommitdiff
path: root/math/qrupdate/files/patch-Makefile
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2009-08-06 03:38:13 +0000
committerMaho Nakata <maho@FreeBSD.org>2009-08-06 03:38:13 +0000
commit4e9fc479805aa43e7df49064622c6c6b97122f15 (patch)
treed751d1f3da13927c1d7dd1f9066151207c70ee75 /math/qrupdate/files/patch-Makefile
parent- Add SIMD knob (diff)
qrupdate is a Fortran library for fast updates of QR and Cholesky
decomposition. It was originally part of GNU-Octave. WWW: http://qrupdate.sourceforge.net/ PR: 137467 Submitted by: Robert Jenssen Note: maintainership is taken over by maho@FreeBSD.org.
Notes
Notes: svn path=/head/; revision=239012
Diffstat (limited to 'math/qrupdate/files/patch-Makefile')
-rw-r--r--math/qrupdate/files/patch-Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/math/qrupdate/files/patch-Makefile b/math/qrupdate/files/patch-Makefile
new file mode 100644
index 000000000000..b3ad7c4c67d9
--- /dev/null
+++ b/math/qrupdate/files/patch-Makefile
@@ -0,0 +1,37 @@
+--- Makefile.orig 2009-02-06 20:12:00.000000000 +1100
++++ Makefile 2009-08-06 01:20:12.000000000 +1000
+@@ -21,6 +21,8 @@
+
+ include Makeconf
+
++all: solib
++
+ help:
+ @echo
+ @echo "The following targets are available:"
+@@ -34,20 +36,20 @@
+ lib:
+ make -C src/ lib
+ solib:
+- make -C src/ solib
++ gmake -C src/ solib
+ test: lib
+ make -C test/
+
+ clean:
+ rm -f libqrupdate.a libqrupdate.so
+- make -C src/ clean
+- make -C test/ clean
++ gmake -C src/ clean
++ gmake -C test/ clean
+
+ install:
+- make -C src/ install
++ gmake -C src/ install
+
+ install-shlib:
+- make -C src/ install-shlib
++ gmake -C src/ install-shlib
+
+ install-staticlib:
+ make -C src/ install-staticlib