aboutsummaryrefslogtreecommitdiff
path: root/rules
diff options
context:
space:
mode:
authorIgor Pashev <igor.pashev@nexenta.com>2012-12-19 11:27:22 +0400
committerIgor Pashev <igor.pashev@nexenta.com>2012-12-19 11:27:22 +0400
commitfdcf880b3c8c67f08453f553474a551e9707d29d (patch)
treed09ca40a4924eb386a85187438da61bbc85dc1b6 /rules
parent78e72b99085c8aabdb4382bca7b084f921cd6213 (diff)
downloadcibs-fdcf880b3c8c67f08453f553474a551e9707d29d.tar.gz
autotools.mk: allow target-specific variable for make
Diffstat (limited to 'rules')
-rw-r--r--rules/autotools.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/rules/autotools.mk b/rules/autotools.mk
index ce9d3be..d2b6349 100644
--- a/rules/autotools.mk
+++ b/rules/autotools.mk
@@ -55,12 +55,14 @@ configure-%-stamp:
$(configure) $(configure-options)
touch $@
+build-%-stamp: target =
build-%-stamp:
- cd "$(builddir)" && $(MAKE) $(make-jobs:%=-j%) V=1
+ cd "$(builddir)" && $(MAKE) $(make-jobs:%=-j%) $(target) V=1
touch $@
+install-%-stamp: target = install
install-%-stamp:
- cd "$(builddir)" && $(MAKE) install DESTDIR="$(protodir)"
+ cd "$(builddir)" && $(MAKE) $(target) DESTDIR="$(protodir)"
touch $@