diff options
author | 2005-01-10 00:28:15 +0000 | |
---|---|---|
committer | 2005-01-10 00:28:15 +0000 | |
commit | 3f4c24a94dc6669c539acbeae522c692157121b5 (patch) | |
tree | 53dcaee2ae69617745f9da6068f0c0aeba05a0a5 | |
parent | enter stand (diff) | |
download | wireguard-openbsd-3f4c24a94dc6669c539acbeae522c692157121b5.tar.xz wireguard-openbsd-3f4c24a94dc6669c539acbeae522c692157121b5.zip |
put the boot crud in the snapshot
-rw-r--r-- | etc/etc.zaurus/Makefile.inc | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/etc/etc.zaurus/Makefile.inc b/etc/etc.zaurus/Makefile.inc index 13a31fb9469..b3b0517a3f1 100644 --- a/etc/etc.zaurus/Makefile.inc +++ b/etc/etc.zaurus/Makefile.inc @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile.inc,v 1.2 2004/12/31 00:19:56 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2005/01/10 00:28:15 deraadt Exp $ # etc.zaurus/Makefile.inc -- zaurus-specific etc Makefile targets .ifdef DESTDIR -snap_md: bsd distrib1 +snap_md: bsd notes bootblocks distrib cp ${.CURDIR}/../sys/arch/zaurus/compile/GENERIC/bsd \ ${DESTDIR}/snapshot/bsd @@ -11,10 +11,13 @@ bsd: cd ${.CURDIR}/../sys/arch/zaurus/compile/GENERIC && \ ${MAKE} clean && ${MAKE} depend && exec ${MAKE} -# knows about bsd.rd -distrib1: - ${MAKE} distrib +notes: + cp ${.CURDIR}/etc.i386/INSTALL.* ${DESTDIR}/snapshot -.PHONY: bsd distrib1 +bootblocks: + cp ${DESTDIR}/usr/mdec/zboot ${DESTDIR}/snapshot + cp ${DESTDIR}/usr/mdec/zbsdmod.o ${DESTDIR}/snapshot + +.PHONY: bsd notes bootblocks .endif # DESTDIR check |