45b8d7c46e
better relocation support for the amd64 and i386 platforms. This should not result in any change in functionality, but moves a step towards supporting the relocatable object file modules on amd64. The same hack/trick as load_elf*.c uses is used here to simultaneously support both elf32 and elf64 on amd64 and i386.
38 lines
823 B
Makefile
38 lines
823 B
Makefile
# $FreeBSD$
|
|
|
|
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"
|
|
SRCS+= load_elf32.c load_elf64.c
|
|
SRCS+= reloc_elf32.c reloc_elf64.c
|
|
.endif
|
|
.if ${MACHINE_ARCH} == "powerpc"
|
|
SRCS+= load_elf32.c reloc_elf32.c
|
|
.endif
|
|
.if ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "alpha"
|
|
SRCS+= load_elf64.c reloc_elf64.c
|
|
.endif
|
|
|
|
.if defined(LOADER_NET_SUPPORT)
|
|
SRCS+= dev_net.c
|
|
.endif
|
|
|
|
# Machine-independant ISA PnP
|
|
.if defined(HAVE_ISABUS)
|
|
SRCS+= isapnp.c
|
|
.endif
|
|
.if defined(HAVE_PNP)
|
|
SRCS+= pnp.c
|
|
.endif
|
|
|
|
# Forth interpreter
|
|
.if defined(BOOT_FORTH)
|
|
SRCS+= interp_forth.c
|
|
MAN+= ../forth/loader.conf.5
|
|
MAN+= ../forth/loader.4th.8
|
|
.endif
|
|
|
|
MAN+= loader.8
|