Makefile revision 202719
1# $FreeBSD: head/gnu/usr.bin/Makefile 202719 2010-01-20 21:30:52Z gabor $
2
3.include <bsd.own.mk>
4
5SUBDIR= ${_binutils} \
6	${_cc} \
7	${_cpio} \
8	${_cvs} \
9	dialog \
10	diff \
11	diff3 \
12	${_gdb} \
13	${_gperf} \
14	${_grep} \
15	${_groff} \
16	${_man} \
17	patch \
18	${_rcs} \
19	sdiff \
20	send-pr \
21	sort \
22	${_texinfo}
23
24.if ${MACHINE_ARCH} == "mips"
25MK_GDB=no	# not yet
26.endif
27
28.if ${MK_CXX} != "no"
29_gperf=		gperf
30.if ${MK_GROFF} != "no"
31_groff=		groff
32.endif
33.endif
34
35.if ${MK_GNU_CPIO} == "yes"
36_cpio=		cpio
37.endif
38
39.if ${MK_CVS} != "no"
40_cvs=		cvs
41.endif
42
43.if ${MK_GNU_GREP} != "no"
44_grep=		grep
45.endif
46
47.if ${MK_INFO} != "no"
48_texinfo=	texinfo
49.endif
50
51.if ${MK_MAN} != "no"
52_man=		man
53.endif
54
55.if ${MK_RCS} != "no"
56_rcs=		rcs
57.endif
58
59.if ${MK_TOOLCHAIN} != "no"
60_binutils=	binutils
61_cc=		cc
62.if ${MK_GDB} != "no"
63_gdb=		gdb
64.endif
65.endif
66
67.include <bsd.subdir.mk>
68