diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-06-25 11:03:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-06-25 11:03:37 +0000 |
commit | 9b96560248666576c6b5083356572e979257a3c3 (patch) | |
tree | 53d09673adf50f061745d9345ed8477ab1f479bd | |
parent | 1738a99caa862954a176f61a5b39322cb4d236a9 (diff) |
build & ship bsd.rd
-rw-r--r-- | etc/etc.amd64/Makefile.inc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/etc/etc.amd64/Makefile.inc b/etc/etc.amd64/Makefile.inc index 9edb898a2fe..5aebe948c21 100644 --- a/etc/etc.amd64/Makefile.inc +++ b/etc/etc.amd64/Makefile.inc @@ -1,15 +1,22 @@ -# $OpenBSD: Makefile.inc,v 1.4 2004/03/21 23:25:11 tom Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2004/06/25 11:03:36 deraadt Exp $ .ifdef DESTDIR -snap_md: bsd distrib bootblocks +snap_md: bsd bsd.mp distrib bootblocks cp ${.CURDIR}/../sys/arch/amd64/compile/GENERIC/bsd \ ${DESTDIR}/snapshot/bsd + cp ${.CURDIR}/../sys/arch/amd64/compile/GENERIC.MP/bsd \ + ${DESTDIR}/snapshot/bsd.mp bsd: cd ${.CURDIR}/../sys/arch/amd64/conf && config GENERIC cd ${.CURDIR}/../sys/arch/amd64/compile/GENERIC && \ ${MAKE} clean && ${MAKE} depend && exec ${MAKE} +bsd.mp: + cd ${.CURDIR}/../sys/arch/amd64/conf && config GENERIC.MP + cd ${.CURDIR}/../sys/arch/amd64/compile/GENERIC.MP && \ + ${MAKE} clean && ${MAKE} depend && exec ${MAKE} + bootblocks: cp ${DESTDIR}/usr/mdec/pxeboot ${DESTDIR}/snapshot |