Makefile revision 156813
1# $FreeBSD: head/gnu/usr.bin/Makefile 156813 2006-03-17 18:54:44Z ru $
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" || ${MACHINE_ARCH} == "powerpc"
28MK_GDB=	no	# not yet
29.endif
30
31.if ${MK_CXX} != "no"
32.if ${MACHINE_ARCH} != "powerpc"
33_gperf=		gperf
34.endif
35.if ${MK_GROFF} != "no"
36_groff=		groff
37.endif
38.endif
39
40.if ${MK_CVS} != "no"
41_cvs=		cvs
42.endif
43
44.if ${MK_MAN} != "no"
45_man=		man
46.endif
47
48.if ${MK_INFO} != "no"
49_texinfo=	texinfo
50.endif
51
52.if ${MK_TOOLCHAIN} != "no"
53_binutils=	binutils
54_cc=		cc
55.if ${MK_GDB} != "no"
56_gdb=		gdb
57.endif
58.endif
59.if ${MK_RCS} != "no"
60_rcs=		rcs
61.endif
62
63.include <bsd.subdir.mk>
64