freebsd-dev/gnu/usr.bin/binutils/Makefile
Ed Maste 6744fea6b3 Switch to ELF toolchain readelf(1)
ELF toolchain readelf lacked some functionality at the time other tools
(like size, strip, nm, etc.) were switched over to the ELF toolchain
versions. That has been addressed as of the last update, so we can add
it to the list.

PR:		198950 [exp-run]
Reviewed by:	bapt, imp, rpaulo
Relnotes:	yes
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D2156
2015-03-30 17:38:25 +00:00

31 lines
382 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
SUBDIR= doc\
libiberty \
libbfd \
libopcodes \
libbinutils \
${_addr2line} \
as \
ld \
${_nm} \
objcopy \
objdump \
${_readelf} \
${_size} \
${_strings} \
${_strip}
.if ${MK_ELFTOOLCHAIN_TOOLS} == "no"
_addr2line= addr2line
_nm= nm
_readelf= readelf
_size= size
_strings= strings
_strip= strip
.endif
.include <bsd.subdir.mk>