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