Makefile revision 256095
1# $FreeBSD: head/gnu/usr.bin/Makefile 256095 2013-10-07 02:23:00Z eadler $
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	sdiff \
16	send-pr \
17	${_texinfo}
18
19.if ${MK_CXX} != "no"
20_gperf=		gperf
21.if ${MK_GROFF} != "no"
22_groff=		groff
23.endif
24.endif
25
26.if ${MK_GPL_DTC} != "no"
27_dtc=		dtc
28.endif
29
30.if ${MK_INFO} != "no"
31_texinfo=	texinfo
32.endif
33
34.if ${MK_BINUTILS} != "no"
35_binutils=	binutils
36.endif
37.if ${MK_GCC} != "no"
38_cc=		cc
39.endif
40.if ${MK_GDB} != "no"
41_gdb=		gdb
42.endif
43
44.include <bsd.subdir.mk>
45