diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-07-16 07:39:17 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-07-16 07:39:17 +0000 |
commit | 5f70aefc7d9a41ec2635c1d255b802a6977b4d41 (patch) | |
tree | 70671ec23b6f84cbec8512305130945c3b6c9962 /gnu | |
parent | 1c5af4a20495a46fa477ff0961e7d85c2e12b67a (diff) |
Mips uses gnu binutils
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index cc76a552e02..2f3ebfb339e 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 1996/07/04 20:34:25 tholo Exp $ +# $OpenBSD: Makefile,v 1.11 1996/07/16 07:39:16 pefo Exp $ # $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $ SUBDIR+= bc cpio cvs dc diff diff3 grep groff @@ -11,5 +11,9 @@ SUBDIR+= gas gdb ld .if ${MACHINE_ARCH} != "alpha" SUBDIR+= gcc .endif +# MIPS uses binutils for ELF support. +.if ${MACHINE_ARCH} == "mips" +SUBDIR+= binutils +.endif .include <bsd.subdir.mk> |