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