665e13c85e
Since a while, the semantic of BR2_PREFER_STATIC_LIB has been changed from "prefer static libraries when possible" to "use only static libraries". The former semantic didn't make much sense, since the user had absolutely no control/idea of which package would use static libraries, and which packages would not. Therefore, for quite some time, we have been starting to enforce that BR2_PREFER_STATIC_LIB should really build everything with static libraries. As a consequence, this patch renames BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS, and adjust the Config.in option accordingly. This also helps preparing the addition of other options to select shared, shared+static or just static. Note that we have verified that this commit can be reproduced by simply doing a global rename of BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS plus adding BR2_PREFER_STATIC_LIB to Config.in.legacy. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
49 lines
1.7 KiB
Makefile
49 lines
1.7 KiB
Makefile
################################################################################
|
|
#
|
|
# lm-sensors
|
|
#
|
|
################################################################################
|
|
|
|
LM_SENSORS_VERSION = 3.3.5
|
|
LM_SENSORS_SOURCE = lm_sensors-$(LM_SENSORS_VERSION).tar.bz2
|
|
LM_SENSORS_SITE = http://dl.lm-sensors.org/lm-sensors/releases
|
|
LM_SENSORS_INSTALL_STAGING = YES
|
|
LM_SENSORS_DEPENDENCIES = host-bison host-flex
|
|
LM_SENSORS_LICENSE = libsensors LGPLv2.1+, programs GPLv2+
|
|
LM_SENSORS_LICENSE_FILES = COPYING.LGPL COPYING
|
|
|
|
LM_SENSORS_BINS_ = bin/sensors-conf-convert
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_SENSORS) += bin/sensors
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_FANCONTROL) += sbin/fancontrol
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_ISADUMP) += sbin/isadump
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_ISASET) += sbin/isaset
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_PWMCONFIG) += sbin/pwmconfig
|
|
LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_SENSORS_DETECT) += sbin/sensors-detect
|
|
|
|
LM_SENSORS_MAKE_OPTS = \
|
|
BUILD_STATIC_LIB=1 \
|
|
MACHINE=$(KERNEL_ARCH) \
|
|
PREFIX=/usr
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LM_SENSORS_MAKE_OPTS += BUILD_SHARED_LIB=0
|
|
else
|
|
LM_SENSORS_MAKE_OPTS += BUILD_SHARED_LIB=1
|
|
endif
|
|
|
|
define LM_SENSORS_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) $(LM_SENSORS_MAKE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define LM_SENSORS_INSTALL_STAGING_CMDS
|
|
$(MAKE) -C $(@D) $(LM_SENSORS_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
|
|
rm -f $(addprefix $(STAGING_DIR)/usr/,$(LM_SENSORS_BINS_) $(LM_SENSORS_BINS_y))
|
|
endef
|
|
|
|
define LM_SENSORS_INSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D) $(LM_SENSORS_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/,$(LM_SENSORS_BINS_))
|
|
endef
|
|
|
|
$(eval $(generic-package))
|