mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
wireless-tools: add option to install shared lib
Closes #2461 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
@@ -4,3 +4,9 @@ config BR2_PACKAGE_WIRELESS_TOOLS
|
||||
A collection of tools to configure wireless lan cards.
|
||||
|
||||
http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
|
||||
|
||||
config BR2_PACKAGE_WIRELESS_TOOLS_LIB
|
||||
bool "Install shared library"
|
||||
depends on BR2_PACKAGE_WIRELESS_TOOLS
|
||||
help
|
||||
The shared library of wireless tools
|
||||
|
||||
@@ -7,19 +7,34 @@
|
||||
WIRELESS_TOOLS_VERSION = 29
|
||||
WIRELESS_TOOLS_SITE = http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux
|
||||
WIRELESS_TOOLS_SOURCE = wireless_tools.$(WIRELESS_TOOLS_VERSION).tar.gz
|
||||
WIRELESS_TOOLS_INSTALL_STAGING = YES
|
||||
|
||||
WIRELESS_TOOLS_BUILD_TARGETS = iwmulticall
|
||||
WIRELESS_TOOLS_INSTALL_TARGETS = install-iwmulticall
|
||||
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WIRELESS_TOOLS_LIB),y)
|
||||
WIRELESS_TOOLS_BUILD_TARGETS += libiw.so.$(WIRELESS_TOOLS_VERSION)
|
||||
WIRELESS_TOOLS_INSTALL_TARGETS += install-dynamic
|
||||
|
||||
define WIRELESS_TOOLS_INSTALL_STAGING_CMDS
|
||||
$(MAKE) -C $(@D) PREFIX="$(STAGING_DIR)" install-dynamic
|
||||
$(MAKE) -C $(@D) PREFIX="$(STAGING_DIR)/usr" install-hdr
|
||||
endef
|
||||
|
||||
endif
|
||||
|
||||
define WIRELESS_TOOLS_BUILD_CMDS
|
||||
$(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
|
||||
iwmulticall
|
||||
$(WIRELESS_TOOLS_BUILD_TARGETS)
|
||||
endef
|
||||
|
||||
define WIRELESS_TOOLS_CLEAN_CMDS
|
||||
$(MAKE) -C $(@D) clean
|
||||
rm -f $(@D)/iwmulticall
|
||||
$(MAKE) -C $(@D) realclean
|
||||
endef
|
||||
|
||||
define WIRELESS_TOOLS_INSTALL_TARGET_CMDS
|
||||
$(MAKE) -C $(@D) PREFIX="$(TARGET_DIR)" install-iwmulticall
|
||||
$(MAKE) -C $(@D) PREFIX="$(TARGET_DIR)" $(WIRELESS_TOOLS_INSTALL_TARGETS)
|
||||
$(MAKE) -C $(@D) INSTALL_MAN="$(TARGET_DIR)/usr/share/man" install-man
|
||||
endef
|
||||
|
||||
|
||||
Reference in New Issue
Block a user