blob: e1c1cd2605ae2d4232e8c0ec5d2ae6042ada5f15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile.inc,v 1.19 2017/04/04 00:03:12 deraadt Exp $
ALLIP= 22 26 27 28 30 32
KERNELS=
MDEXT=
.for IP in ${ALLIP}
KERNELS+= GENERIC-IP${IP} bsd.IP${IP}
MDEXT+= bsd.rd.IP${IP}
.endfor
KERNELS+= GENERIC-IP30.MP bsd.mp.IP30
KERNELS+= GENERIC-IP27.MP bsd.mp.IP27
bootblocks:
cp -p ${DESTDIR}/usr/mdec/boot32 ${RELEASEDIR}
cp -p ${DESTDIR}/usr/mdec/boot64 ${RELEASEDIR}
cp -p ${DESTDIR}/usr/mdec/bootecoff ${RELEASEDIR}
MDEXT+= boot32 boot64 bootecoff cd${OSrev}.iso
|