mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
907e906f01
Adresses @easrentai suggestion to pass modules build optimization for space here: #590 (comment) - Uniformized module's $(CROSS_TOOLS) being passed as environment variable, prior of ./configure call Doesn't work for: - busybox (HOSTCXXFLAGS="-Os" attempted prior of ./configure call) - zlib (CFLAGS="-Os" attempted prior of ./configure call) - npth (CFLAGS="-Os" attempted prior of ./configure call)
33 lines
1005 B
Makefile
33 lines
1005 B
Makefile
# GPG with Yubikey support requires libusb
|
|
modules-$(CONFIG_GPG) += libusb
|
|
modules-$(CONFIG_GPG2) += libusb
|
|
|
|
libusb_version := 1.0.21
|
|
libusb_dir := libusb-$(libusb_version)
|
|
libusb_tar := libusb-$(libusb_version).tar.bz2
|
|
libusb_url := https://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-$(libusb_version)/$(libusb_tar)
|
|
libusb_url := https://github.com/libusb/libusb/releases/download/v$(libusb_version)/$(libusb_tar)
|
|
libusb_hash := 7dce9cce9a81194b7065ee912bcd55eeffebab694ea403ffb91b67db66b1824b
|
|
|
|
libusb_configure := \
|
|
CFLAGS="-Os" \
|
|
./configure \
|
|
$(CROSS_TOOLS)\
|
|
--host $(MUSL_ARCH)-elf-linux\
|
|
--prefix "/"\
|
|
--disable-udev\
|
|
--disable-tests\
|
|
|
|
# Run one build to generate the executables with the pre-defined
|
|
# exec_prefix and datarootdir, then a second make to install the binaries
|
|
# into our actual target location
|
|
|
|
libusb_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libusb_libraries := libusb/.libs/libusb-1.0.so.0
|
|
|
|
libusb_depends := $(musl_dep)
|