diff options
-rw-r--r-- | etc/Makefile | 3 | ||||
-rw-r--r-- | sys/i386/boot/biosboot/Makefile | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index f1a73c1..d7a13c5 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.164 1998/05/07 23:42:24 ache Exp $ +# $Id: Makefile,v 1.165 1998/05/16 21:28:14 jb Exp $ # -rw-r--r-- BINOWN= root @@ -61,6 +61,7 @@ distribution: ( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \ ( cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt ); \ ( cd ${.CURDIR}/../usr.sbin/sendmail/cf/cf; ${MAKE} etc-sendmail.cf ); \ + ( cd ${.CURDIR}/../sys/i386/boot/biosboot; ${MAKE} install-boothelp ); \ pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \ MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev ) diff --git a/sys/i386/boot/biosboot/Makefile b/sys/i386/boot/biosboot/Makefile index c0e291b..a8a7384 100644 --- a/sys/i386/boot/biosboot/Makefile +++ b/sys/i386/boot/biosboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.62 1998/02/15 21:38:17 eivind Exp $ +# $Id: Makefile,v 1.63 1998/03/07 10:48:07 eivind Exp $ # PROG= boot @@ -98,5 +98,9 @@ install: ln -s boot2 boot$${i} ; ) \ done +install-boothelp: + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}\ + ${.CURDIR}/boot.help ${DESTDIR}/ + .include <bsd.kern.mk> .include <bsd.prog.mk> |