Deleted Added
full compact
Makefile (144563) Makefile (146011)
1# $FreeBSD: head/sys/boot/pc98/boot2/Makefile 144563 2005-04-03 04:58:15Z imp $
1# $FreeBSD: head/sys/boot/pc98/boot2/Makefile 146011 2005-05-08 14:17:28Z nyan $
2#
3
4PROG= boot
5# Order is very important on the SRCS line for this prog
6SRCS= start.S table.c boot2.S boot.c asm.S bios.S serial.S
7SRCS+= probe_keyboard.c io.c disk.c sys.c
8
9BINMODE= 444
10CFLAGS= -Os -mrtd \
11 -fno-guess-branch-probability \
12 -fno-unit-at-a-time \
2#
3
4PROG= boot
5# Order is very important on the SRCS line for this prog
6SRCS= start.S table.c boot2.S boot.c asm.S bios.S serial.S
7SRCS+= probe_keyboard.c io.c disk.c sys.c
8
9BINMODE= 444
10CFLAGS= -Os -mrtd \
11 -fno-guess-branch-probability \
12 -fno-unit-at-a-time \
13 -D_KERNEL -DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}
13 -D_KERNEL -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}
14CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}
15CFLAGS+= ${CWARNFLAGS}
16CFLAGS+= -I${.CURDIR}/../../.. -I.
17
18# By default, if a serial port is going to be used as console, use COM1
19# (aka /dev/ttyd0).
20#BOOT_COMCONSOLE_PORT?=0x30
21BOOT_COMCONSOLE_PORT?=0x238

--- 93 unchanged lines hidden ---
14CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}
15CFLAGS+= ${CWARNFLAGS}
16CFLAGS+= -I${.CURDIR}/../../.. -I.
17
18# By default, if a serial port is going to be used as console, use COM1
19# (aka /dev/ttyd0).
20#BOOT_COMCONSOLE_PORT?=0x30
21BOOT_COMCONSOLE_PORT?=0x238

--- 93 unchanged lines hidden ---