1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5SUBDIR= ${_binutils} \ 6 ${_cc} \ 7 diff \ 8 diff3 \ 9 ${_dtc} \ 10 ${_gdb} \ 11 ${_gperf} \ 12 grep \ 13 ${_groff} \ 14 ${_tests} 15 16SUBDIR_DEPEND_gdb= ${_binutils} 17 18.if ${MK_CXX} != "no" 19.if ${MK_GCC} != "no" 20_gperf= gperf 21.endif 22.if ${MK_GROFF} != "no" 23_groff= groff 24.endif 25.endif 26 27.if ${MK_GPL_DTC} != "no" 28_dtc= dtc 29.endif 30 31.if ${MK_TESTS} != "no" 32_tests= tests 33.endif 34 35.if ${MK_BINUTILS} != "no" 36_binutils= binutils 37.if ${MK_GDB} != "no" 38_gdb= gdb 39.endif 40.endif 41 42.if ${MK_GCC} != "no" 43_cc= cc 44.endif 45 46SUBDIR.${MK_DIALOG}+= dialog 47 48SUBDIR_PARALLEL= 49 50.include <bsd.subdir.mk> 51