aboutsummaryrefslogtreecommitdiff
path: root/release/Makefile
diff options
context:
space:
mode:
authorGlen Barber <gjb@FreeBSD.org>2014-10-29 15:52:17 +0000
committerGlen Barber <gjb@FreeBSD.org>2014-10-29 15:52:17 +0000
commitd08ce983a7bbe104dfc78c920a86985ae2fd60cc (patch)
tree49597d7cc660d7d1da76c6c0df385b099df37e7d /release/Makefile
parent6513e474ac5b1450691119b31343805f1d1266fc (diff)
downloadsrc-d08ce983a7bbe104dfc78c920a86985ae2fd60cc.tar.gz
src-d08ce983a7bbe104dfc78c920a86985ae2fd60cc.zip
Add glue to allow enabling building cloud provider
VM images by default. When WITH_CLOUDWARE is not empty, add CLOUDTARGETS to the release/Makefile 'release' target. CLOUDTARGETS is generated from the contents of CLOUDWARE, which should be a list of all supported target providers. Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/projects/release-vmimage/; revision=273824
Diffstat (limited to 'release/Makefile')
-rw-r--r--release/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/Makefile b/release/Makefile
index 5c425e48f0af..5edd4d0f4f68 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -269,6 +269,9 @@ release:
.if defined(WITH_VMIMAGES) && !empty(WITH_VMIMAGES)
${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} ${VMTARGETS}
.endif
+.if defined(WITH_CLOUDWARE) && !empty(WITH_CLOUDWARE) && !empty(CLOUDWARE)
+ ${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} ${CLOUDTARGETS}
+.endif
install:
.if defined(DESTDIR) && !empty(DESTDIR)