Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin Only build binaries on mipse? systems, but build man...



details:   https://anonhg.NetBSD.org/src/rev/d0d73f473716
branches:  trunk
changeset: 473596:d0d73f473716
user:      simonb <simonb%NetBSD.org@localhost>
date:      Wed Jun 09 02:54:17 1999 +0000

description:
Only build binaries on mipse? systems, but build man pages on everything.

diffstat:

 usr.bin/elf2aout/Makefile  |  7 ++++++-
 usr.bin/elf2ecoff/Makefile |  7 ++++++-
 2 files changed, 12 insertions(+), 2 deletions(-)

diffs (32 lines):

diff -r e238ee145164 -r d0d73f473716 usr.bin/elf2aout/Makefile
--- a/usr.bin/elf2aout/Makefile Wed Jun 09 01:47:14 1999 +0000
+++ b/usr.bin/elf2aout/Makefile Wed Jun 09 02:54:17 1999 +0000
@@ -1,6 +1,11 @@
-#      $NetBSD: Makefile,v 1.3 1997/01/09 20:18:34 tls Exp $
+#      $NetBSD: Makefile,v 1.4 1999/06/09 02:54:17 simonb Exp $
 #      from: @(#)Makefile      5.4 (Berkeley) 5/11/90
 
+# Build ELF to {ecoff, aout} tools on mips, for old bootblocks/PROMs.
+.if (${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb")
 PROG=  elf2aout
+.endif
+
+MAN=   elf2aout.1
 
 .include <bsd.prog.mk>
diff -r e238ee145164 -r d0d73f473716 usr.bin/elf2ecoff/Makefile
--- a/usr.bin/elf2ecoff/Makefile        Wed Jun 09 01:47:14 1999 +0000
+++ b/usr.bin/elf2ecoff/Makefile        Wed Jun 09 02:54:17 1999 +0000
@@ -1,6 +1,11 @@
-#      $NetBSD: Makefile,v 1.6 1998/02/22 12:17:24 christos Exp $
+#      $NetBSD: Makefile,v 1.7 1999/06/09 02:54:18 simonb Exp $
 #      from: @(#)Makefile      5.4 (Berkeley) 5/11/90
 
+# Build ELF to {ecoff, aout} tools on mips, for old bootblocks/PROMs.
+.if (${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb")
 PROG=  elf2ecoff
+.endif
+
+MAN=   elf2ecoff.1
 
 .include <bsd.prog.mk>



Home | Main Index | Thread Index | Old Index