1999-08-27 21:08:13 -04:00
|
|
|
# $FreeBSD$
|
1999-02-03 03:39:09 -05:00
|
|
|
#
|
|
|
|
|
LIB= pc98
|
2004-10-24 11:33:08 -04:00
|
|
|
INTERNALLIB=
|
1999-02-03 03:39:09 -05:00
|
|
|
|
2001-09-16 01:22:27 -04:00
|
|
|
.PATH: ${.CURDIR}/../../i386/libi386
|
|
|
|
|
|
2009-03-19 09:53:42 -04: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 \
|
2009-12-31 07:05:48 -05:00
|
|
|
i386_copy.c i386_module.c nullconsole.c pc98_sys.c pxe.c pxetramp.s \
|
2000-09-22 08:49:15 -04:00
|
|
|
time.c vidconsole.c
|
|
|
|
|
|
2008-02-29 00:06:06 -05:00
|
|
|
# Enable PXE TFTP or NFS support, not both.
|
|
|
|
|
.if defined(LOADER_TFTP_SUPPORT)
|
|
|
|
|
CFLAGS+= -DLOADER_TFTP_SUPPORT
|
|
|
|
|
.else
|
|
|
|
|
CFLAGS+= -DLOADER_NFS_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
|
1999-02-03 03:39:09 -05:00
|
|
|
BOOT_COMCONSOLE_PORT?= 0x238
|
|
|
|
|
CFLAGS+= -DCOMPORT=${BOOT_COMCONSOLE_PORT}
|
|
|
|
|
|
|
|
|
|
BOOT_COMCONSOLE_SPEED?= 9600
|
|
|
|
|
CFLAGS+= -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
|
|
|
|
|
|
2001-09-16 01:22:27 -04:00
|
|
|
.ifdef(BOOT_BIOSDISK_DEBUG)
|
1999-02-03 03:39:09 -05:00
|
|
|
# Make the disk code more talkative
|
2001-09-16 01:22:27 -04:00
|
|
|
CFLAGS+= -DDISK_DEBUG
|
|
|
|
|
.endif
|
1999-02-03 03:39:09 -05:00
|
|
|
|
|
|
|
|
# Include simple terminal emulation (cons25-compatible)
|
|
|
|
|
CFLAGS+= -DTERM_EMU
|
|
|
|
|
|
2005-12-20 03:54:30 -05:00
|
|
|
# XXX: make alloca() useable
|
|
|
|
|
CFLAGS+= -Dalloca=__builtin_alloca
|
|
|
|
|
|
2002-05-21 05:44:52 -04: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 03:39:09 -05:00
|
|
|
.include <bsd.lib.mk>
|