summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorjonathan <jonathan@NetBSD.org>1999-03-03 12:00:18 +0000
committerjonathan <jonathan@NetBSD.org>1999-03-03 12:00:18 +0000
commit3eeb52dee07aafcfabce219f5dfa7bd11cba830f (patch)
tree50b687461cf70b05e50412451ade030c957d8468 /usr.bin
parent5129c4fcd5f8f3092ab075f8ebbbd0dfb848fc21 (diff)
Makefile ${MACHINE_ARCH} changes for mips{eb,el}, as suggested by
Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile
index 145ed664b94..8b52e240172 100644
--- a/usr.bin/Makefile
+++ b/usr.bin/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.99 1999/03/02 14:07:24 christos Exp $
+# $NetBSD: Makefile,v 1.100 1999/03/03 12:00:19 jonathan Exp $
# from: @(#)Makefile 8.3 (Berkeley) 1/7/94
.include <bsd.own.mk> # for EXPORTABLE_SYSTEM definition
@@ -32,7 +32,7 @@ SUBDIR+=elf2aout elf2ecoff telnet
.else
# Build ELF to {ecoff, aout} tools on mips, for old bootblocks/PROMs.
-.if (${MACHINE_ARCH} == "mips")
+.if (${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb")
SUBDIR+= elf2aout elf2ecoff
.endif