openbsd-ports/math/qrupdate/patches/patch-Makefile

43 lines
874 B
Plaintext
Raw Normal View History

$OpenBSD: patch-Makefile,v 1.2 2010/05/14 08:45:58 ajacoutot Exp $
--- Makefile.orig Fri Feb 6 11:12:00 2009
+++ Makefile Sat May 8 00:03:43 2010
@@ -20,6 +20,7 @@
#
include Makeconf
+all: solib
help:
@echo
@@ -32,22 +33,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