0849e8193e
Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
#############################################################
|
|
#
|
|
# wireless_tools
|
|
#
|
|
#############################################################
|
|
|
|
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)" \
|
|
$(WIRELESS_TOOLS_BUILD_TARGETS)
|
|
endef
|
|
|
|
define WIRELESS_TOOLS_CLEAN_CMDS
|
|
$(MAKE) -C $(@D) realclean
|
|
endef
|
|
|
|
define WIRELESS_TOOLS_INSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D) PREFIX="$(TARGET_DIR)" $(WIRELESS_TOOLS_INSTALL_TARGETS)
|
|
$(MAKE) -C $(@D) INSTALL_MAN="$(TARGET_DIR)/usr/share/man" install-man
|
|
endef
|
|
|
|
define WIRELESS_TOOLS_UNINSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D) PREFIX="$(TARGET_DIR)" uninstall
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS))
|