134b378392
Now that we no longer have GCC 4.2.1 in the tree and can assume FreeBSD is being built with a C++11 compiler available, we can use BSDL dtc unconditionally and retire the GPL dtc. GPL dtc now has FreeBSD CI support via Cirrus-CI to help ensure it continues to build/work on FreeBSD and is available in the ports tree if needed. The copy of (copyfree licensed) libfdt that we actually use is in sys/contrib/libfdt so the extra copy under contrib/dtc/libfdt can be removed along with the rest of the GPL dtc. Reviewed by: kevans, ian, imp, manu, theraven Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D23192
20 lines
322 B
Makefile
20 lines
322 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
|
|
.if ${MK_GDB} != "no" || ${MK_BINUTILS} != "no"
|
|
SUBDIR+= binutils
|
|
.endif
|
|
|
|
SUBDIR.${MK_DIALOG}+= dialog
|
|
SUBDIR.${MK_GNU_DIFF}+= diff3
|
|
SUBDIR.${MK_GNU_GREP}+= grep
|
|
SUBDIR.${MK_GDB}+= gdb
|
|
SUBDIR_DEPEND_gdb= binutils
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|