1# $OpenBSD: Makefile.inc,v 1.18 2009/04/21 09:12:26 deraadt Exp $ 2 3kernels: bsd bsd.mp bootblocks linux-notes 4 cp ${.CURDIR}/../sys/arch/i386/compile/GENERIC/bsd \ 5 ${RELEASEDIR}/bsd 6 cp ${.CURDIR}/../sys/arch/i386/compile/GENERIC.MP/bsd \ 7 ${RELEASEDIR}/bsd.mp 8 9bsd: 10 cd ${.CURDIR}/../sys/arch/i386/conf && config GENERIC 11 cd ${.CURDIR}/../sys/arch/i386/compile/GENERIC && \ 12 ${MAKE} clean && ${MAKE} depend && exec ${MAKE} 13 14bsd.mp: 15 cd ${.CURDIR}/../sys/arch/i386/conf && config GENERIC.MP 16 cd ${.CURDIR}/../sys/arch/i386/compile/GENERIC.MP && \ 17 ${MAKE} clean && ${MAKE} depend && exec ${MAKE} 18 19bootblocks: 20 cp ${DESTDIR}/usr/mdec/pxeboot ${RELEASEDIR} 21 cp ${DESTDIR}/usr/mdec/cdboot ${RELEASEDIR} 22 cp ${DESTDIR}/usr/mdec/cdbr ${RELEASEDIR} 23 24linux-notes: 25 cp ${.CURDIR}/etc.i386/INSTALL.* ${RELEASEDIR} 26 27MDEXT= bsd bsd.mp bsd.rd cd${OSrev}.iso cdemu${OSrev}.iso \ 28 floppy${OSrev}.fs floppyB${OSrev}.fs floppyC${OSrev}.fs \ 29 pxeboot cdboot cdbr INSTALL.linux 30 31.PHONY: bsd bsd.mp bootblocks 32