diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2011-07-22 09:30:55 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2011-07-22 09:30:55 +0000 |
commit | a9b4c06ebf41cc104b32ac8b53f1216d9f43366b (patch) | |
tree | 0d13349816cc5f7b911f32ff2e178f3a11e5d3a6 /etc/etc.sgi | |
parent | 180b3f32fdc59ec916e5236e2f6f2445b1698cc7 (diff) |
unify kernel building on various platforms.
feedback from miod@ and deraadt@
Diffstat (limited to 'etc/etc.sgi')
-rw-r--r-- | etc/etc.sgi/Makefile.inc | 32 |
1 files changed, 4 insertions, 28 deletions
diff --git a/etc/etc.sgi/Makefile.inc b/etc/etc.sgi/Makefile.inc index 8bf6c14f68c..d319b7aef26 100644 --- a/etc/etc.sgi/Makefile.inc +++ b/etc/etc.sgi/Makefile.inc @@ -1,35 +1,11 @@ -# $OpenBSD: Makefile.inc,v 1.13 2011/04/15 03:11:38 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.14 2011/07/22 09:30:54 espie Exp $ -kernels: bsd bootblocks - cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP27/bsd \ - ${RELEASEDIR}/bsd.IP27 - cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30/bsd \ - ${RELEASEDIR}/bsd.IP30 - cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30.MP/bsd \ - ${RELEASEDIR}/bsd.mp.IP30 - cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP32/bsd \ - ${RELEASEDIR}/bsd.IP32 - -bsd: - cd ${.CURDIR}/../sys/arch/sgi/conf && config GENERIC-IP27 - cd ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP27 && \ - ${MAKE} clean && exec ${MAKE} - cd ${.CURDIR}/../sys/arch/sgi/conf && config GENERIC-IP30 - cd ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30 && \ - ${MAKE} clean && exec ${MAKE} - cd ${.CURDIR}/../sys/arch/sgi/conf && config GENERIC-IP30.MP - cd ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30.MP && \ - ${MAKE} clean && exec ${MAKE} - cd ${.CURDIR}/../sys/arch/sgi/conf && config GENERIC-IP32 - cd ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP32 && \ - ${MAKE} clean && exec ${MAKE} +KERNELS = GENERIC-IP27 bsd.IP27 GENERIC-IP30 bsd.IP30 \ + GENERIC-IP30.MP bsd.mp.IP30 GENERIC-IP32 bsd.IP32 bootblocks: cp ${DESTDIR}/usr/mdec/boot32 ${RELEASEDIR} cp ${DESTDIR}/usr/mdec/boot64 ${RELEASEDIR} -MDEXT= bsd.IP27 bsd.rd.IP27 bsd.IP30 bsd.mp.IP30 bsd.rd.IP30 \ - bsd.IP32 bsd.rd.IP32 \ +MDEXT= bsd.rd.IP27 bsd.rd.IP30 bsd.rd.IP32 \ boot32 boot64 cd${OSrev}.iso - -.PHONY: bsd bootblocks |