The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / make / make.mk
1 ################################################################################
2 #
3 # make
4 #
5 ################################################################################
6
7 MAKE_VERSION = 4.1
8 MAKE_SOURCE = make-$(MAKE_VERSION).tar.bz2
9 MAKE_SITE = $(BR2_GNU_MIRROR)/make
10 MAKE_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
11 MAKE_LICENSE = GPLv3+
12 MAKE_LICENSE_FILES = COPYING
13
14 # Disable the 'load' operation for static builds since it needs dlopen
15 ifeq ($(BR2_STATIC_LIBS),y)
16 MAKE_CONF_OPTS += --disable-load
17 endif
18
19 ifeq ($(BR2_PACKAGE_GUILE),y)
20 MAKE_DEPENDENCIES += guile
21 MAKE_CONF_OPTS += --with-guile
22 else
23 MAKE_CONF_OPTS += --without-guile
24 endif
25
26 $(eval $(autotools-package))