0518a98ac3
While the autotools infrastructure was using FOO_MAKE_OPT, generic packages were typically using FOO_MAKE_OPTS. This inconsistency becomes a problem when a new infrastructure is introduced that wants to make use of FOO_MAKE_OPT(S), and can live alongside either generic-package or autotools-package. The new infrastructure will have to choose between either OPT or OPTS, and thus rule out transparent usage by respectively generic packages or generic packages. An example of such an infrastructure is kconfig-package, which provides kconfig-related make targets. The OPTS variant is more logical, as there are typically multiple options. This patch renames all occurrences of FOO_MAKE_OPT in FOO_MAKE_OPTS. Sed command used: find * -type f | xargs sed -i 's#_MAKE_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
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_PREFER_STATIC_LIB),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))
|