Makefile revision 161578
1# $FreeBSD: head/gnu/usr.bin/Makefile 161578 2006-08-24 15:46:29Z marcel $
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	gzip \
19	${_man} \
20	patch \
21	${_rcs} \
22	sdiff \
23	send-pr \
24	sort \
25	${_texinfo}
26 
27.if ${MACHINE_ARCH} == "arm"
28MK_GDB=	no	# not yet
29.endif
30
31.if ${MK_CXX} != "no"
32_gperf=		gperf
33.if ${MK_GROFF} != "no"
34_groff=		groff
35.endif
36.endif
37
38.if ${MK_CVS} != "no"
39_cvs=		cvs
40.endif
41
42.if ${MK_MAN} != "no"
43_man=		man
44.endif
45
46.if ${MK_INFO} != "no"
47_texinfo=	texinfo
48.endif
49
50.if ${MK_TOOLCHAIN} != "no"
51_binutils=	binutils
52_cc=		cc
53.if ${MK_GDB} != "no"
54_gdb=		gdb
55.endif
56.endif
57.if ${MK_RCS} != "no"
58_rcs=		rcs
59.endif
60
61.include <bsd.subdir.mk>
62