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