xref: /freebsd-11-stable/stand/pc98/boot0/Makefile (revision e3ec075a3dea48f44f532a193f30503d7a4d85b0)
1# $FreeBSD$
2
3PROG=	${BOOT}
4INTERNALPROG=
5FILES=	${BOOT}
6SRCS=	${BOOT}.s
7CLEANFILES+= ${BOOT}
8
9BOOT=	boot0
10
11# The base address that we the boot0 code to to run it.  Don't change this
12# unless you are glutton for punishment.
13BOOT_BOOT0_ORG?=	0x0000
14ORG=${BOOT_BOOT0_ORG}
15
16LDFLAGS+=${LDFLAGS_BIN}
17
18.include <bsd.prog.mk>
19