Deleted Added
full compact
1c1
< # $FreeBSD: head/sys/boot/pc98/boot0/Makefile 64123 2000-08-02 08:46:08Z kato $
---
> # $FreeBSD: head/sys/boot/pc98/boot0/Makefile 125563 2004-02-07 12:19:44Z nyan $
3,8c3,4
< PROG= boot0
< OBJS= boot0.o
< NOMAN=
< STRIP=
< BINDIR?= /boot
< BINMODE= 444
---
> FILES= ${BOOT}
> CLEANFILES= ${BOOT} ${BOOT}.out ${BOOT}.o
10c6
< ORG= 0x0000
---
> BOOT= boot0
12,13c8,10
< boot0: boot0.out
< objcopy -S -O binary boot0.out ${.TARGET}
---
> # The base address that we the boot0 code to to run it. Don't change this
> # unless you are glutton for punishment.
> BOOT_BOOT0_ORG?= 0x0000
15,16c12,13
< boot0.out: ${OBJS}
< ${LD} -N -e start -Ttext ${ORG} -o ${.TARGET} ${OBJS}
---
> ${BOOT}: ${BOOT}.out
> objcopy -S -O binary ${BOOT}.out ${.TARGET}
18c15,16
< CLEANFILES+= boot0.out
---
> ${BOOT}.out: ${BOOT}.o
> ${LD} -N -e start -Ttext ${BOOT_BOOT0_ORG} -o ${.TARGET} ${BOOT}.o