X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fmake%2Fmake.mk;fp=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fmake%2Fmake.mk;h=ebfa2f0319c0ee72267f5ea44fd3dae5d0375d61;hb=b0a0f15dfaa205161a7fcb20cf1b8cd4948c2ef3;hp=0000000000000000000000000000000000000000;hpb=c6ac3cd55ee2da956195eee393b0882105dfad4e;p=packages%2Ftrusty%2Fcirros-testvm.git diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/make/make.mk b/cirros-testvm/src-cirros/buildroot-2015.05/package/make/make.mk new file mode 100644 index 0000000..ebfa2f0 --- /dev/null +++ b/cirros-testvm/src-cirros/buildroot-2015.05/package/make/make.mk @@ -0,0 +1,26 @@ +################################################################################ +# +# make +# +################################################################################ + +MAKE_VERSION = 4.1 +MAKE_SOURCE = make-$(MAKE_VERSION).tar.bz2 +MAKE_SITE = $(BR2_GNU_MIRROR)/make +MAKE_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) +MAKE_LICENSE = GPLv3+ +MAKE_LICENSE_FILES = COPYING + +# Disable the 'load' operation for static builds since it needs dlopen +ifeq ($(BR2_STATIC_LIBS),y) +MAKE_CONF_OPTS += --disable-load +endif + +ifeq ($(BR2_PACKAGE_GUILE),y) +MAKE_DEPENDENCIES += guile +MAKE_CONF_OPTS += --with-guile +else +MAKE_CONF_OPTS += --without-guile +endif + +$(eval $(autotools-package))