Makefile revision 125563
1# $FreeBSD: head/sys/boot/pc98/boot0/Makefile 125563 2004-02-07 12:19:44Z nyan $
2
3FILES=	${BOOT}
4CLEANFILES= ${BOOT} ${BOOT}.out ${BOOT}.o
5
6BOOT=	boot0
7
8# The base address that we the boot0 code to to run it.  Don't change this
9# unless you are glutton for punishment.
10BOOT_BOOT0_ORG?=	0x0000
11
12${BOOT}: ${BOOT}.out
13	objcopy -S -O binary ${BOOT}.out ${.TARGET}
14
15${BOOT}.out: ${BOOT}.o
16	${LD} -N -e start -Ttext ${BOOT_BOOT0_ORG} -o ${.TARGET} ${BOOT}.o
17
18.include <bsd.prog.mk>
19