openbsd-ports/math/qrupdate/patches/patch-Makefile
steven ea96691402 normalization: use FC as fortran compiler and honor FFLAGS.
allows to build it easily with gfortran.
make more use of MAKE_FLAGS.
make the tests work.

maintainer timeout
2010-06-29 05:01:34 +00:00

35 lines
801 B
Plaintext

$OpenBSD: patch-Makefile,v 1.3 2010/06/29 05:01:34 steven Exp $
--- Makefile.orig Fri Feb 6 10:12:00 2009
+++ Makefile Fri Jun 18 19:24:48 2010
@@ -32,22 +32,22 @@ help:
@echo " make install - installs everything"
lib:
- make -C src/ lib
+ ${MAKE_PROGRAM} -C src/ lib
solib:
- make -C src/ solib
+ ${MAKE_PROGRAM} -C src/ solib
test: lib
- make -C test/
+ ${MAKE_PROGRAM} -C test/
clean:
rm -f libqrupdate.a libqrupdate.so
- make -C src/ clean
- make -C test/ clean
+ ${MAKE_PROGRAM} -C src/ clean
+ ${MAKE_PROGRAM} -C test/ clean
install:
- make -C src/ install
+ ${MAKE_PROGRAM} -C src/ install
install-shlib:
- make -C src/ install-shlib
+ ${MAKE_PROGRAM} -C src/ install-shlib
install-staticlib:
- make -C src/ install-staticlib
+ ${MAKE_PROGRAM} -C src/ install-staticlib