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