]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/boot/pc98/boot0/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / boot / pc98 / boot0 / Makefile
1 # $FreeBSD$
2
3 PROG=   ${BOOT}.out
4 INTERNALPROG=
5 FILES=  ${BOOT}
6 NO_MAN=
7 SRCS=   ${BOOT}.s
8 CLEANFILES= ${BOOT}
9
10 BOOT=   boot0
11
12 # The base address that we the boot0 code to to run it.  Don't change this
13 # unless you are glutton for punishment.
14 BOOT_BOOT0_ORG?=        0x0000
15
16 LDFLAGS=-e start -Ttext ${BOOT_BOOT0_ORG} -Wl,-N
17
18 ${BOOT}: ${BOOT}.out
19         objcopy -S -O binary ${BOOT}.out ${.TARGET}
20
21 .include <bsd.prog.mk>