Sync with sys/i386/boot/biosboot/Makefile revision 1.68.

This commit is contained in:
KATO Takenori 1999-01-04 08:02:13 +00:00
parent 701c68e36b
commit c1413f26a7
1 changed files with 5 additions and 14 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.20 1998/11/23 07:34:37 kato Exp $ # $Id: Makefile,v 1.21 1999/01/03 05:03:46 kato Exp $
# #
PROG= boot PROG= boot
@ -6,9 +6,8 @@ PROG= boot
SRCS= start.S table.c boot2.S boot.c asm.S bios.S serial.S SRCS= start.S table.c boot2.S boot.c asm.S bios.S serial.S
SRCS+= probe_keyboard.c io.c disk.c sys.c SRCS+= probe_keyboard.c io.c disk.c sys.c
BINDIR= /usr/mdec
BINMODE= 444 BINMODE= 444
CFLAGS= -aout -O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 \ CFLAGS= -O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 \
-mno-486 \ -mno-486 \
-DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT} -DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}
CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK} CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}
@ -87,19 +86,11 @@ boot2: boot.nohdr
all: boot1 boot2 all: boot1 boot2
install: install:
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}\ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
boot1 ${DESTDIR}${BINDIR}/boot1 boot1 boot2 ${DESTDIR}${BINDIR}/
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}\
boot2 ${DESTDIR}${BINDIR}/boot2
for i in da fd wd od vn wfd ; do \
( cd ${DESTDIR}${BINDIR} ; \
rm -f boot$${i} $${i}boot ; \
ln -s boot1 $${i}boot ; \
ln -s boot2 boot$${i} ; ) \
done
install-boothelp: install-boothelp:
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}\ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
${.CURDIR}/boot.help ${DESTDIR}/ ${.CURDIR}/boot.help ${DESTDIR}/
.include <bsd.kern.mk> .include <bsd.kern.mk>