1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1998-08-21 03:17:42 +00:00
|
|
|
#
|
1998-10-21 20:07:57 +00:00
|
|
|
LIB= i386
|
1998-08-21 03:17:42 +00:00
|
|
|
NOPIC=
|
|
|
|
NOPROFILE=
|
1998-10-21 20:07:57 +00:00
|
|
|
INTERNALLIB= true
|
1998-09-30 22:36:45 +00:00
|
|
|
INTERNALSTATICLIB= true
|
1998-08-21 03:17:42 +00:00
|
|
|
|
2001-08-30 00:42:12 +00:00
|
|
|
SRCS= aout_freebsd.c biosacpi.c biosdisk.c biosmem.c biospnp.c biospci.c \
|
1998-10-23 22:29:08 +00:00
|
|
|
bootinfo.c comconsole.c devicename.c elf_freebsd.c gatea20.c \
|
2000-09-20 18:13:36 +00:00
|
|
|
i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
|
|
|
|
time.c vidconsole.c
|
1998-08-21 03:17:42 +00:00
|
|
|
|
1998-10-14 07:08:16 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
|
2001-08-30 00:42:12 +00:00
|
|
|
-I${.CURDIR}/../../../contrib/dev/acpica \
|
1998-10-14 07:08:16 +00:00
|
|
|
-I${.CURDIR}/../../.. -I.
|
1998-08-21 03:17:42 +00:00
|
|
|
|
1999-01-10 14:48:05 +00:00
|
|
|
BOOT_COMCONSOLE_PORT?= 0x3f8
|
|
|
|
CFLAGS+= -DCOMPORT=${BOOT_COMCONSOLE_PORT}
|
|
|
|
|
|
|
|
BOOT_COMCONSOLE_SPEED?= 9600
|
|
|
|
CFLAGS+= -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
|
|
|
|
|
2000-04-21 22:06:02 +00:00
|
|
|
# the location of libstand
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
|
|
|
|
|
2000-08-03 09:14:02 +00:00
|
|
|
.ifdef(BOOT_BIOSDISK_DEBUG)
|
1998-08-21 03:17:42 +00:00
|
|
|
# Make the disk code more talkative
|
2000-08-03 09:14:02 +00:00
|
|
|
CFLAGS+= -DDISK_DEBUG
|
|
|
|
.endif
|
1998-08-21 03:17:42 +00:00
|
|
|
|
1998-12-22 11:51:25 +00:00
|
|
|
# Include simple terminal emulation (cons25-compatible)
|
|
|
|
CFLAGS+= -DTERM_EMU
|
|
|
|
|
1999-10-19 03:53:59 +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
|
|
|
|
|
1998-10-21 20:07:57 +00:00
|
|
|
# If it's not there, don't consider it a target
|
|
|
|
.if exists(${.CURDIR}/../../../i386/include)
|
|
|
|
beforedepend ${OBJS}: machine
|
1998-10-14 07:08:16 +00:00
|
|
|
|
|
|
|
machine:
|
|
|
|
ln -sf ${.CURDIR}/../../../i386/include machine
|
|
|
|
|
1998-10-21 20:07:57 +00:00
|
|
|
.endif
|
|
|
|
|
1998-10-14 07:08:16 +00:00
|
|
|
CLEANFILES+= machine
|
|
|
|
|
1998-08-21 03:17:42 +00:00
|
|
|
.include <bsd.lib.mk>
|