aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/boot
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-10-08 22:18:34 +0000
committerBruce Evans <bde@FreeBSD.org>1996-10-08 22:18:34 +0000
commit3eeeca733b21f06cdd994f9cbeba8f35d2df59f3 (patch)
tree292848aa76efe2a28b9bbebcb627dd4694d5e080 /sys/i386/boot
parent6b30bfd370bfb64c47f70629e5691c45eac1eecb (diff)
downloadsrc-3eeeca733b21f06cdd994f9cbeba8f35d2df59f3.tar.gz
src-3eeeca733b21f06cdd994f9cbeba8f35d2df59f3.zip
Use the same warning flags as for the kernel. This causes surprisingly
few warnings.
Notes
Notes: svn path=/head/; revision=18822
Diffstat (limited to 'sys/i386/boot')
-rw-r--r--sys/i386/boot/biosboot/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/i386/boot/biosboot/Makefile b/sys/i386/boot/biosboot/Makefile
index a64991a3a581..f44f227325d7 100644
--- a/sys/i386/boot/biosboot/Makefile
+++ b/sys/i386/boot/biosboot/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.44 1996/09/05 21:12:04 julian Exp $
+# $Id: Makefile,v 1.45 1996/09/07 21:16:44 bde Exp $
#
PROG= boot
@@ -12,6 +12,7 @@ CFLAGS= -O2 \
-DDO_BAD144 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}
CFLAGS+= -DCOMCONSOLE=0x3F8
CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}
+CFLAGS+= ${CWARNFLAGS}
# Probe the keyboard and use the serial console if the keyboard isn't found.
#CFLAGS+= -DPROBE_KEYBOARD
@@ -96,4 +97,5 @@ install:
ln -s boot2 boot$${i} ; ) \
done
+.include <bsd.kern.mk>
.include <bsd.prog.mk>