1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1999-02-03 08:39:09 +00:00
|
|
|
#
|
|
|
|
LIB= pc98
|
|
|
|
INTERNALLIB= true
|
|
|
|
|
2001-09-16 05:22:27 +00:00
|
|
|
.PATH: ${.CURDIR}/../../i386/libi386
|
|
|
|
|
2002-08-29 02:02:28 +00:00
|
|
|
SRCS= biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
|
2001-11-06 12:31:05 +00:00
|
|
|
biospci.c bootinfo.c comconsole.c devicename.c elf_freebsd.c gatea20.c \
|
2000-09-22 12:49:15 +00:00
|
|
|
i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
|
|
|
|
time.c vidconsole.c
|
|
|
|
|
2002-05-10 09:26:35 +00:00
|
|
|
CFLAGS+= -ffreestanding
|
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
|
|
|
|
|
2002-05-21 09:44:52 +00:00
|
|
|
CFLAGS+= -DPC98
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
|
|
|
|
-I${.CURDIR}/../../i386/libi386 \
|
|
|
|
-I${.CURDIR}/../../../contrib/dev/acpica \
|
|
|
|
-I${.CURDIR}/../../.. -I.
|
|
|
|
# the location of libstand
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
|
|
|
|
|
1999-11-03 08:23:57 +00:00
|
|
|
# Make "machine" required for all objects
|
|
|
|
# (based on the more complete case in sys/i386/boot/Makefile.inc)
|
|
|
|
${SRCS:M*.c:R:S/$/.o/g}: machine
|
|
|
|
|
1999-02-03 08:39:09 +00:00
|
|
|
# If it's not there, don't consider it a target
|
|
|
|
.if exists(${.CURDIR}/../../../i386/include)
|
|
|
|
beforedepend ${OBJS}: machine
|
|
|
|
|
|
|
|
machine:
|
|
|
|
ln -sf ${.CURDIR}/../../../i386/include machine
|
|
|
|
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CLEANFILES+= machine
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|