diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2010-03-14 02:50:24 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2010-03-14 02:50:24 +0000 |
| commit | 50156b8586e0cab986416637d2c9ddf89a3ad92d (patch) | |
| tree | de99492cf360e59f65eb02aa46c22ad4ff4df480 /sys/boot | |
| parent | cb07288af3867f3b2198a911eebfcb77dce305b8 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/common/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index bb0d12098601..98761f4d7e9b 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -7,11 +7,13 @@ SRCS+= module.c panic.c .if ${MACHINE} == "i386" || ${MACHINE_ARCH} == "amd64" SRCS+= load_elf32.c load_elf32_obj.c reloc_elf32.c SRCS+= load_elf64.c load_elf64_obj.c reloc_elf64.c +.elif ${MACHINE} == "ia64" +SRCS+= load_elf64.c load_elf64_obj.c reloc_elf64.c .elif ${MACHINE} == "pc98" SRCS+= load_elf32.c load_elf32_obj.c reloc_elf32.c .elif ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "arm" SRCS+= load_elf32.c reloc_elf32.c -.elif ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "ia64" +.elif ${MACHINE_ARCH} == "sparc64" SRCS+= load_elf64.c reloc_elf64.c .endif |
