xref: /dragonfly/gnu/usr.bin/Makefile (revision aa8d5dcb)
1# $FreeBSD: src/gnu/usr.bin/Makefile,v 1.51 2000/01/16 00:11:34 obrien Exp $
2# $DragonFly: src/gnu/usr.bin/Makefile,v 1.6 2004/02/02 05:43:10 dillon Exp $
3#
4# Note that gcc2 is only built under the i386 architecture.  Other
5# architectures require gcc3.
6
7SUBDIR= awk bc cpio dc dialog diff diff3 gperf \
8	grep groff gzip man patch ptx rcs sdiff send-pr sort tar texinfo
9
10.if !defined(NO_CVS)
11SUBDIR+=cvs
12.endif
13
14SUBDIR+= binutils214 cc3
15
16.if ${MACHINE_ARCH} == "i386"
17SUBDIR+=binutils cc as ld
18.endif
19
20.if !defined(NOPERL) && exists(${.CURDIR}/perl)
21SUBDIR+=perl
22.endif
23
24.include <bsd.subdir.mk>
25