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>
22 lines
667 B
Makefile
22 lines
667 B
Makefile
#############################################################
|
|
#
|
|
# libelf
|
|
#
|
|
#############################################################
|
|
LIBELF_VERSION=0.8.12
|
|
LIBELF_SOURCE=libelf-$(LIBELF_VERSION).tar.gz
|
|
LIBELF_SITE=http://www.mr511.de/software/
|
|
LIBELF_INSTALL_STAGING = YES
|
|
LIBELF_INSTALL_STAGING_OPT = instroot=$(STAGING_DIR) install
|
|
LIBELF_INSTALL_TARGET_OPT = instroot=$(TARGET_DIR) install
|
|
|
|
LIBELD_CONF_ENV = libelf_cv_working_memmove=yes \
|
|
mr_cv_target_elf=yes \
|
|
libelf_64bit=yes
|
|
|
|
LIBELF_CONF_OPT = --disable-sanity-checks \
|
|
$(if $(BR2_ENABLE_DEBUG),--enable-debug,--disable-debug) \
|
|
$(if $(BR2_LARGEFILE),--enable-elf64)
|
|
|
|
$(eval $(autotools-package))
|