mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 01:35:49 -04:00
Reviewed by: bapt, brooks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3238
19 lines
265 B
Makefile
19 lines
265 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= doc\
|
|
libiberty \
|
|
libbfd \
|
|
libopcodes \
|
|
libbinutils \
|
|
as \
|
|
ld \
|
|
${_objcopy} \
|
|
objdump \
|
|
|
|
.if ${MK_ELFTOOLCHAIN_TOOLS} == "no" || ${MK_ELFCOPY_AS_OBJCOPY} == "no"
|
|
_objcopy= objcopy
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|