mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 17:17:19 -04:00
To be able to info pages consider installing texinfo from ports print/texinfo or via pkg: pkg install texinfo Differential Revision: https://reviews.freebsd.org/D1409 Reviewed by: emaste, imp (previous version) Relnotes: yes
28 lines
354 B
Makefile
28 lines
354 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= libiberty \
|
|
libbfd \
|
|
libopcodes \
|
|
libbinutils \
|
|
${_addr2line} \
|
|
as \
|
|
ld \
|
|
${_nm} \
|
|
objcopy \
|
|
objdump \
|
|
readelf \
|
|
${_size} \
|
|
${_strings} \
|
|
${_strip}
|
|
|
|
.if ${MK_ELFTOOLCHAIN_TOOLS} == "no"
|
|
_addr2line= addr2line
|
|
_nm= nm
|
|
_size= size
|
|
_strings= strings
|
|
_strip= strip
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|