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 ${_rcs} \ 16 sdiff \ 17 send-pr \ 18 ${_tests} \ 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_TESTS} != "no" 41_tests= tests 42.endif 43 44.if ${MK_BINUTILS} != "no" 45_binutils= binutils 46.endif 47.if ${MK_GCC} != "no" 48_cc= cc 49.endif 50.if ${MK_GDB} != "no" 51_gdb= gdb 52.endif 53 54SUBDIR_PARALLEL= 55 56.include <bsd.subdir.mk> 57