1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1999-02-03 08:39:09 +00:00
|
|
|
#
|
|
|
|
LIB= pc98
|
2004-10-24 15:33:08 +00:00
|
|
|
INTERNALLIB=
|
1999-02-03 08:39:09 +00:00
|
|
|
|
2001-09-16 05:22:27 +00:00
|
|
|
.PATH: ${.CURDIR}/../../i386/libi386
|
|
|
|
|
2003-05-01 13:17:06 +00:00
|
|
|
SRCS= bioscd.c biosdisk.c biosmem.c biospnp.c biospci.c biossmap.c \
|
|
|
|
bootinfo.c bootinfo32.c comconsole.c devicename.c elf32_freebsd.c \
|
2006-04-11 20:11:30 +00:00
|
|
|
i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
|
2000-09-22 12:49:15 +00:00
|
|
|
time.c vidconsole.c
|
|
|
|
|
1999-02-03 08:39:09 +00:00
|
|
|
BOOT_COMCONSOLE_PORT?= 0x238
|
|
|
|
CFLAGS+= -DCOMPORT=${BOOT_COMCONSOLE_PORT}
|
|
|
|
|
|
|
|
BOOT_COMCONSOLE_SPEED?= 9600
|
|
|
|
CFLAGS+= -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
|
|
|
|
|
2001-09-16 05:22:27 +00:00
|
|
|
.ifdef(BOOT_BIOSDISK_DEBUG)
|
1999-02-03 08:39:09 +00:00
|
|
|
# Make the disk code more talkative
|
2001-09-16 05:22:27 +00:00
|
|
|
CFLAGS+= -DDISK_DEBUG
|
|
|
|
.endif
|
1999-02-03 08:39:09 +00:00
|
|
|
|
|
|
|
# Include simple terminal emulation (cons25-compatible)
|
|
|
|
CFLAGS+= -DTERM_EMU
|
|
|
|
|
2005-12-20 08:54:30 +00:00
|
|
|
# XXX: make alloca() useable
|
|
|
|
CFLAGS+= -Dalloca=__builtin_alloca
|
|
|
|
|
2002-05-21 09:44:52 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
|
|
|
|
-I${.CURDIR}/../../i386/libi386 \
|
|
|
|
-I${.CURDIR}/../../.. -I.
|
|
|
|
# the location of libstand
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
|
|
|
|
|
1999-02-03 08:39:09 +00:00
|
|
|
.include <bsd.lib.mk>
|