Makefile revision 267911
1# $FreeBSD: releng/9.3/gnu/usr.bin/Makefile 267911 2014-06-26 11:02:51Z gavin $
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	sort \
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_FDT}	!= "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
55SUBDIR_PARALLEL=
56
57.include <bsd.subdir.mk>
58