blob: 78047b276b4e27c3b83aecee92b6a64bc7bc319a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.21 1997/03/11 18:53:30 tholo Exp $
# $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $
SUBDIR+= bc cvs dc deroff diff diff3 gcc grep groff
SUBDIR+= gzip perl rcs sdiff sendbug sudo
# some ports use binutils, some do not.
.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "mips") || \
(${MACHINE_ARCH} == "powerpc")
SUBDIR+= binutils
.else
SUBDIR+= gas gdb ld
.endif
# Do this last, so that it re-builds the info 'dir' file
SUBDIR+= texinfo
.include <bsd.subdir.mk>
|