1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

ELF64 support is not needed on pc98.

This commit is contained in:
Yoshihiro Takahashi 2004-10-24 12:18:11 +00:00
parent c25984c97c
commit 222be03974
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136893

View File

@ -4,10 +4,14 @@ SRCS+= bcache.c boot.c commands.c console.c devopen.c interp.c
SRCS+= interp_backslash.c interp_parse.c ls.c misc.c
SRCS+= module.c panic.c
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
.if ${MACHINE} == "i386" || ${MACHINE_ARCH} == "amd64"
SRCS+= load_elf32.c load_elf32_obj.c load_elf64.c load_elf64_obj.c
SRCS+= reloc_elf32.c reloc_elf64.c
.endif
.if ${MACHINE} == "pc98"
SRCS+= load_elf32.c load_elf32_obj.c
SRCS+= reloc_elf32.c
.endif
.if ${MACHINE_ARCH} == "powerpc"
SRCS+= load_elf32.c reloc_elf32.c
.endif