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