Makefile.inc revision 260096
1# Common defines for all of /sys/boot/pc98/
2#
3# $FreeBSD: stable/10/sys/boot/pc98/Makefile.inc 260096 2013-12-30 20:15:46Z dim $
4
5BINDIR?=	/boot
6
7LOADER_ADDRESS?=0x200000
8CFLAGS+=	-march=i386 -ffreestanding
9CFLAGS.gcc+=	-mpreferred-stack-boundary=2
10CFLAGS+=	-mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
11CFLAGS+=	-Os -DPC98
12LDFLAGS+=	-nostdlib
13
14# BTX components
15.if exists(${.OBJDIR}/../btx)
16BTXDIR=		${.OBJDIR}/../btx
17.else
18BTXDIR=		${.CURDIR}/../btx
19.endif
20BTXLDR=		${BTXDIR}/btxldr/btxldr
21BTXKERN=	${BTXDIR}/btx/btx
22BTXCRT=		${BTXDIR}/lib/crt0.o
23
24.include "../Makefile.inc"
25