summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2010-12-30 19:22:26 +0000
committerderaadt <deraadt@openbsd.org>2010-12-30 19:22:26 +0000
commit3a106e1c54353d7f867d6683c1cf14fbd383892c (patch)
treef498de9173157f7e616be1ff49500da7c5479b91
parentIf genassym fails, sort on the pipeline will indicate no error resulting (diff)
downloadwireguard-openbsd-3a106e1c54353d7f867d6683c1cf14fbd383892c.tar.xz
wireguard-openbsd-3a106e1c54353d7f867d6683c1cf14fbd383892c.zip
Start shipping bsd.mp for hppa; ok miod
-rw-r--r--etc/etc.hppa/Makefile.inc15
1 files changed, 11 insertions, 4 deletions
diff --git a/etc/etc.hppa/Makefile.inc b/etc/etc.hppa/Makefile.inc
index c063fc180ce..bab8aecdacb 100644
--- a/etc/etc.hppa/Makefile.inc
+++ b/etc/etc.hppa/Makefile.inc
@@ -1,18 +1,25 @@
-# $OpenBSD: Makefile.inc,v 1.8 2010/08/17 19:17:14 deraadt Exp $
+# $OpenBSD: Makefile.inc,v 1.9 2010/12/30 19:22:26 deraadt Exp $
-kernels: bootblocks bsd
+kernels: bootblocks bsd bsd.mp
cp ${.CURDIR}/../sys/arch/hppa/compile/GENERIC/bsd \
${RELEASEDIR}/bsd
+ cp ${.CURDIR}/../sys/arch/hppa/compile/GENERIC.MP/bsd \
+ ${RELEASEDIR}/bsd.mp
bsd:
cd ${.CURDIR}/../sys/arch/hppa/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/hppa/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
+bsd.mp:
+ cd ${.CURDIR}/../sys/arch/hppa/conf && config GENERIC.MP
+ cd ${.CURDIR}/../sys/arch/hppa/compile/GENERIC.MP && \
+ ${MAKE} clean && ${MAKE} depend && exec ${MAKE}
+
bootblocks:
cp ${DESTDIR}/usr/mdec/xxboot ${RELEASEDIR}
-MDEXT= bsd bsd.rd cd${OSrev}.iso install${OSrev}.iso lif${OSrev}.fs \
+MDEXT= bsd bsd.mp bsd.rd cd${OSrev}.iso install${OSrev}.iso lif${OSrev}.fs \
xxboot
-.PHONY: bsd bootblocks
+.PHONY: bsd bsd.mp bootblocks