Deleted Added
full compact
1c1
< # $FreeBSD: head/sys/boot/common/Makefile.inc 102556 2002-08-29 02:02:28Z peter $
---
> # $FreeBSD: head/sys/boot/common/Makefile.inc 114379 2003-05-01 03:56:30Z peter $
4c4
< SRCS+= interp_backslash.c interp_parse.c load_elf.c ls.c misc.c
---
> SRCS+= interp_backslash.c interp_parse.c ls.c misc.c
6a7,16
> .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
> SRCS+= load_elf32.c load_elf64.c
> .endif
> .if ${MACHINE_ARCH} == "powerpc"
> SRCS+= load_elf32.c
> .endif
> .if ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "alpha"
> SRCS+= load_elf64.c
> .endif
>
27a38,40
> .if ${MACHINE_ARCH} == "amd64"
> CFLAGS+= -m32
> .endif