300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS 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>
20 lines
516 B
Makefile
20 lines
516 B
Makefile
#############################################################
|
|
#
|
|
# libnl
|
|
#
|
|
#############################################################
|
|
|
|
LIBNL_VERSION = 3.0
|
|
LIBNL_SOURCE = libnl-$(LIBNL_VERSION).tar.gz
|
|
LIBNL_SITE = http://www.infradead.org/~tgr/libnl/files/
|
|
LIBNL_INSTALL_STAGING = YES
|
|
LIBNL_DEPENDENCIES = host-bison
|
|
LIBNL_MAKE = $(MAKE1)
|
|
|
|
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
|
|
|
|
$(eval $(call AUTOTARGETS))
|