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 ${_texinfo} 21 22.if ${MK_CXX} != "no" 23_gperf= gperf 24.if ${MK_GROFF} != "no" 25_groff= groff 26.endif 27.endif 28 29.if ${MK_CVS} != "no" 30_cvs= cvs 31.endif 32 33.if ${MK_GPL_DTC} != "no" 34_dtc= dtc 35.endif 36 37.if ${MK_INFO} != "no" 38_texinfo= texinfo 39.endif 40 41.if ${MK_RCS} != "no" 42_rcs= rcs 43.endif 44 45.if ${MK_BINUTILS} != "no" 46_binutils= binutils 47.endif 48.if ${MK_GCC} != "no" 49_cc= cc 50.endif 51.if ${MK_GDB} != "no" 52_gdb= gdb 53.endif 54 55.include <bsd.subdir.mk> 56