diff options
author | 1997-09-25 02:00:51 +0000 | |
---|---|---|
committer | 1997-09-25 02:00:51 +0000 | |
commit | 28400f67ba1e5fe47eba227df89f6d0dc949a14a (patch) | |
tree | e58ce74f85d25942263a5d02115555eb5256cdc3 | |
parent | Makefile.inc (diff) | |
download | wireguard-openbsd-28400f67ba1e5fe47eba227df89f6d0dc949a14a.tar.xz wireguard-openbsd-28400f67ba1e5fe47eba227df89f6d0dc949a14a.zip |
Sorry 'bout the previous commit, I'm much too tired to be
mucking with the tree. Basically some extra information
that I found very helpfull in understanding the CHS
translation issues present with the PC BIOS stuff.
-rw-r--r-- | etc/etc.i386/Makefile.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/etc.i386/Makefile.inc b/etc/etc.i386/Makefile.inc index 5afe6b8d0c3..63d36722860 100644 --- a/etc/etc.i386/Makefile.inc +++ b/etc/etc.i386/Makefile.inc @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile.inc,v 1.7 1997/09/21 11:50:25 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.8 1997/09/25 02:00:51 weingart Exp $ # etc.i386/Makefile.inc -- i386-specific etc Makefile targets .ifdef DESTDIR -snap_md: bsd distrib +snap_md: bsd notes distrib bsd: cd ${.CURDIR}/../sys/arch/i386/conf && config GENERIC @@ -11,6 +11,9 @@ bsd: cp ${.CURDIR}/../sys/arch/i386/compile/GENERIC/bsd \ ${DESTDIR}/snapshot/bsd +notes: + cp ${.CURDIR}/INSTALL.* ${DESTDIR} + distrib: cd ${.CURDIR}/../distrib && make cleandir && \ make && make install |