Makefile revision 131746
1# $FreeBSD: head/gnu/usr.bin/Makefile 131746 2004-07-07 17:24:30Z ru $
2
3SUBDIR= bc \
4	${_binutils} \
5	${_cc} \
6	cpio \
7	${_cvs} \
8	dc \
9	dialog \
10	diff \
11	diff3 \
12	${_gdb} \
13	${_gperf} \
14	grep \
15	${_groff} \
16	gzip \
17	man \
18	patch \
19	rcs \
20	sdiff \
21	send-pr \
22	sort \
23	tar \
24	texinfo
25 
26.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc"
27NO_GDB=	not yet
28.endif
29
30.if !defined(NO_CXX)
31.if ${MACHINE_ARCH} != "powerpc"
32_gperf=		gperf
33.endif
34_groff=		groff
35.endif
36
37.if !defined(NO_CVS)
38_cvs=		cvs
39.endif
40
41.if !defined(NO_TOOLCHAIN)
42_binutils=	binutils
43_cc=		cc
44.if !defined(NO_GDB)
45_gdb=		gdb
46.endif
47.endif
48
49.include <bsd.subdir.mk>
50