sun3 now uses ELF.
This commit is contained in:
parent
a95226826d
commit
7408da7619
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $NetBSD: makeflist,v 1.29 2001/01/17 06:28:12 jwise Exp $
|
||||
# $NetBSD: makeflist,v 1.30 2001/02/22 07:12:55 chs Exp $
|
||||
#
|
||||
# Print out the files in some or all lists.
|
||||
# Usage: makeflist [-b] [-x] [-a arch] [-m machine] [-s setsdir] [setname ...]
|
||||
|
@ -59,7 +59,7 @@ fi
|
|||
arch=`echo $arch | sed s,^mipse.,mips, | sed s,^sh3e.,sh3,`
|
||||
|
||||
# Compute toolchain used on target cpu.
|
||||
if [ "$arch" = "mips" -o "$machine" = "alpha" -o "$arch" = "powerpc" -o "$arch" = "sparc" -o "$arch" = "sparc64" -o "$arch" = "i386" -o "$arch" = "arm26" -o "$machine" = "mvme68k" -o "$machine" = "hp300" ]; then
|
||||
if [ "$arch" = "mips" -o "$machine" = "alpha" -o "$arch" = "powerpc" -o "$arch" = "sparc" -o "$arch" = "sparc64" -o "$arch" = "i386" -o "$arch" = "arm26" -o "$machine" = "mvme68k" -o "$machine" = "hp300" -o "$machine" = "sun3" ]; then
|
||||
shlib=elf
|
||||
else
|
||||
if [ "$arch" = "sh3" ]; then
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: bsd.own.mk,v 1.155 2001/02/01 19:29:59 itojun Exp $
|
||||
# $NetBSD: bsd.own.mk,v 1.156 2001/02/22 07:12:55 chs Exp $
|
||||
|
||||
.if !defined(_BSD_OWN_MK_)
|
||||
_BSD_OWN_MK_=1
|
||||
|
@ -108,6 +108,7 @@ NOLINT=1
|
|||
${MACHINE_ARCH} == "sparc" || \
|
||||
${MACHINE_ARCH} == "sparc64" || \
|
||||
${MACHINE_ARCH} == "i386" || \
|
||||
${MACHINE} == "sun3" || \
|
||||
${MACHINE} == "mvme68k" || \
|
||||
${MACHINE} == "hp300"
|
||||
OBJECT_FMT?=ELF
|
||||
|
|
Loading…
Reference in New Issue