diff options
author | kato <kato@FreeBSD.org> | 1999-01-04 08:02:13 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1999-01-04 08:02:13 +0000 |
commit | ce45c43791bf554cc1cffe4e6e393ec3e6029430 (patch) | |
tree | a76cb0958f6e8d49553c84309927730dcdb47784 /sys/pc98/boot/biosboot/Makefile | |
parent | 3f95b6516258a7f583df6e54cc349a58412e89cb (diff) | |
download | FreeBSD-src-ce45c43791bf554cc1cffe4e6e393ec3e6029430.zip FreeBSD-src-ce45c43791bf554cc1cffe4e6e393ec3e6029430.tar.gz |
Sync with sys/i386/boot/biosboot/Makefile revision 1.68.
Diffstat (limited to 'sys/pc98/boot/biosboot/Makefile')
-rw-r--r-- | sys/pc98/boot/biosboot/Makefile | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/sys/pc98/boot/biosboot/Makefile b/sys/pc98/boot/biosboot/Makefile index 262bb26..3a2640c 100644 --- a/sys/pc98/boot/biosboot/Makefile +++ b/sys/pc98/boot/biosboot/Makefile @@ -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 @@ -6,9 +6,8 @@ PROG= boot 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 -BINDIR= /usr/mdec 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 \ -DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT} CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK} @@ -87,19 +86,11 @@ boot2: boot.nohdr all: boot1 boot2 install: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}\ - boot1 ${DESTDIR}${BINDIR}/boot1 - ${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} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + boot1 boot2 ${DESTDIR}${BINDIR}/ install-boothelp: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}\ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ ${.CURDIR}/boot.help ${DESTDIR}/ .include <bsd.kern.mk> |