summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGaël PORTAY <gael.portay@savoirfairelinux.com>2018-06-11 09:47:50 -0400
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-06-17 15:07:52 +0200
commitb57b7a3571d14fec37ee8a73585bfb0ebd88c781 (patch)
tree8a6bf144c51299469b96e48d1930cc9a9cb7fe33
parente922bbc7aef31267bea730a1d4a98ec2eabdf761 (diff)
downloadbuildroot-b57b7a3571d14fec37ee8a73585bfb0ebd88c781.tar.gz
buildroot-b57b7a3571d14fec37ee8a73585bfb0ebd88c781.zip
libusb: add an option to compile examples
Signed-off-by: Gaël PORTAY <gael.portay@savoirfairelinux.com> [Thomas: - use make loop instead of shell loop - use $(INSTALL) instead of cp.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r--package/libusb/Config.in7
-rw-r--r--package/libusb/libusb.mk10
2 files changed, 17 insertions, 0 deletions
diff --git a/package/libusb/Config.in b/package/libusb/Config.in
index 5238588aa8..d31a717fdf 100644
--- a/package/libusb/Config.in
+++ b/package/libusb/Config.in
@@ -6,5 +6,12 @@ config BR2_PACKAGE_LIBUSB
http://libusb.info/
+if BR2_PACKAGE_LIBUSB
+
+config BR2_PACKAGE_LIBUSB_EXAMPLES
+ bool "build libusb examples"
+
+endif
+
comment "libusb needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/libusb/libusb.mk b/package/libusb/libusb.mk
index aee3622f8d..fe38a1d2d2 100644
--- a/package/libusb/libusb.mk
+++ b/package/libusb/libusb.mk
@@ -25,5 +25,15 @@ else
LIBUSB_CONF_OPTS += --disable-udev
endif
+ifeq ($(BR2_PACKAGE_LIBUSB_EXAMPLES),y)
+LIBUSB_CONF_OPTS += --enable-examples-build
+define LIBUSB_INSTALL_TARGET_EXAMPLES
+ $(foreach example,listdevs xusb fxload hotplugtest testlibusb dpfp dpfp_threaded sam3u_benchmark,
+ $(INSTALL) -D -m0755 $(@D)/examples/$(example) $(TARGET_DIR)/usr/bin/$(example)
+ )
+endef
+LIBUSB_POST_INSTALL_TARGET_HOOKS += LIBUSB_INSTALL_TARGET_EXAMPLES
+endif
+
$(eval $(autotools-package))
$(eval $(host-autotools-package))
OpenPOWER on IntegriCloud