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