1# $FreeBSD: releng/10.3/gnu/usr.bin/Makefile 292798 2015-12-27 21:08:09Z marius $
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	${_tests} \
18	${_texinfo}
19
20SUBDIR_DEPEND_gdb= ${_binutils}
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_GPL_DTC} != "no"
30_dtc=		dtc
31.endif
32
33.if ${MK_INFO} != "no"
34_texinfo=	texinfo
35.endif
36
37.if ${MK_RCS} != "no"
38_rcs=		rcs
39.endif
40
41.if ${MK_TESTS} != "no"
42_tests=		tests
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
55SUBDIR_PARALLEL=
56
57.include <bsd.subdir.mk>
58