e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
630 B
Makefile
22 lines
630 B
Makefile
#############################################################
|
|
#
|
|
# libhid
|
|
#
|
|
#############################################################
|
|
|
|
LIBHID_VERSION = 0.2.16
|
|
LIBHID_SOURCE = libhid-$(LIBHID_VERSION).tar.gz
|
|
LIBHID_SITE = http://alioth.debian.org/frs/download.php/1958
|
|
LIBHID_DEPENDENCIES = libusb-compat libusb
|
|
LIBHID_INSTALL_STAGING = YES
|
|
# configure runs libusb-config for cflags/ldflags. Ensure it picks up
|
|
# the target version
|
|
LIBHID_CONF_ENV = PATH=$(STAGING_DIR)/usr/bin:$(TARGET_PATH)
|
|
LIBHID_CONF_OPT = \
|
|
--disable-swig \
|
|
--disable-werror \
|
|
--without-doxygen \
|
|
--disable-package-config
|
|
|
|
$(eval $(autotools-package))
|