diff options
-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> |