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>
25 lines
671 B
Makefile
25 lines
671 B
Makefile
#############################################################
|
|
#
|
|
# libftdi
|
|
#
|
|
#############################################################
|
|
LIBFTDI_VERSION = 0.19
|
|
LIBFTDI_SOURCE = libftdi-$(LIBFTDI_VERSION).tar.gz
|
|
LIBFTDI_SITE = http://www.intra2net.com/en/developer/libftdi/download/
|
|
LIBFTDI_DEPENDENCIES = libusb-compat libusb
|
|
LIBFTDI_INSTALL_STAGING = YES
|
|
|
|
LIBFTDI_AUTORECONF = YES
|
|
|
|
LIBFDTI_CONF_OPT = --without-examples
|
|
|
|
# configure detect it automaticaly so we need to force it
|
|
ifeq ($(BR2_PACKAGE_LIBTFDI_CPP),y)
|
|
LIBFDTI_CONF_OPT += --enable-libftdipp
|
|
else
|
|
LIBFDTI_CONF_OPT += --disable-libftdipp
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|