blob: 7326b6f93d104c8950729e34235141b0391c19da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.12 1996/07/16 07:47:26 deraadt Exp $
# $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $
SUBDIR+= bc cpio cvs dc diff diff3 gcc grep groff
SUBDIR+= gzip rcs sdiff sendbug sort texinfo
# some ports use binutils, some do not.
.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "mips")
SUBDIR+= binutils
.else
SUBDIR+= gas gdb ld
.endif
.include <bsd.subdir.mk>
|