mirror of
https://github.com/opnsense/src.git
synced 2026-04-05 01:15:30 -04:00
The option was added only to ease the transition from GNU Binutils to ELF Tool Chain tools, and that process is now complete (for the viable replacements). Noting the removal in UPDATING is sufficient as we have not shipped a release with the option. Reviewed by: brooks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3240
51 lines
937 B
Makefile
51 lines
937 B
Makefile
# $FreeBSD$
|
|
|
|
# This file is not autogenerated - take care!
|
|
|
|
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
|
|
|
.if !defined(MK_CLANG)
|
|
.include "${SRCTOP}/share/mk/src.opts.mk"
|
|
.endif
|
|
DIRDEPS=
|
|
|
|
.if ${MK_TOOLCHAIN} == "yes"
|
|
DIRDEPS+= \
|
|
usr.bin/addr2line \
|
|
usr.bin/cxxflit \
|
|
usr.bin/elfcopy \
|
|
usr.bin/nm \
|
|
usr.bin/readelf \
|
|
usr.bin/size \
|
|
usr.bin/strip \
|
|
usr.bin/strings \
|
|
|
|
.else
|
|
DIRDEPS+= \
|
|
gnu/usr.bin/binutils/addr2line \
|
|
gnu/usr.bin/binutils/nm \
|
|
gnu/usr.bin/binutils/readelf \
|
|
gnu/usr.bin/binutils/size \
|
|
gnu/usr.bin/binutils/strip \
|
|
gnu/usr.bin/binutils/strings \
|
|
|
|
.endif
|
|
|
|
DIRDEPS+= \
|
|
usr.bin/xinstall \
|
|
gnu/usr.bin/binutils/ar \
|
|
gnu/usr.bin/binutils/as \
|
|
gnu/usr.bin/binutils/ld \
|
|
gnu/usr.bin/binutils/objcopy \
|
|
gnu/usr.bin/binutils/objdump \
|
|
gnu/usr.bin/binutils/ranlib \
|
|
|
|
|
|
.if ${MK_CLANG} == "yes"
|
|
DIRDEPS+= targets/pseudo/clang
|
|
.endif
|
|
.if ${MK_GCC} == "yes"
|
|
DIRDEPS+= targets/pseudo/gcc
|
|
.endif
|
|
|
|
.include <dirdeps.mk>
|