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>
30 lines
830 B
Makefile
30 lines
830 B
Makefile
#############################################################
|
|
#
|
|
# libnl
|
|
#
|
|
#############################################################
|
|
|
|
LIBNL_VERSION = 3.2.11
|
|
LIBNL_SITE = http://www.infradead.org/~tgr/libnl/files
|
|
LIBNL_INSTALL_STAGING = YES
|
|
LIBNL_DEPENDENCIES = host-bison
|
|
LIBNL_MAKE = $(MAKE1)
|
|
LIBNL_BINARIES = class-add class-delete class-list classid-lookup cls-add \
|
|
cls-delete cls-list link-list pktloc-lookup qdisc-add qdisc-delete \
|
|
qdisc-list
|
|
|
|
define LIBNL_UNINSTALL_TARGET_CMDS
|
|
rm -r $(TARGET_DIR)/usr/lib/libnl.* $(TARGET_DIR)/usr/lib/libnl-*.*
|
|
rm -rf $(TARGET_DIR)/usr/lib/libnl
|
|
endef
|
|
|
|
define LIBNL_REMOVE_TOOLS
|
|
rm -rf $(addprefix $(TARGET_DIR)/usr/sbin/nl-, $(LIBNL_BINARIES))
|
|
endef
|
|
|
|
ifneq ($(BR2_PACKAGE_LIBNL_TOOLS),y)
|
|
LIBNL_POST_INSTALL_TARGET_HOOKS += LIBNL_REMOVE_TOOLS
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|