1# $OpenBSD: Makefile.inc,v 1.1 2006/10/25 01:47:41 drahn Exp $ 2 3.ifdef DESTDIR 4snap_md: bsd bootblocks distrib 5 cp ${.CURDIR}/../sys/arch/landisk/compile/GENERIC/bsd \ 6 ${DESTDIR}/snapshot/bsd 7 8bsd: 9 cd ${.CURDIR}/../sys/arch/landisk/conf && config GENERIC 10 cd ${.CURDIR}/../sys/arch/landisk/compile/GENERIC && \ 11 ${MAKE} clean && ${MAKE} depend && exec ${MAKE} 12 13# probably will be replaced by procedure to build 'miniroot' image 14bootblocks: 15 cp ${DESTDIR}/usr/mdec/mbr ${DESTDIR}/snapshot 16 cp ${DESTDIR}/usr/mdec/bootxx ${DESTDIR}/snapshot 17 cp ${DESTDIR}/usr/mdec/boot ${DESTDIR}/snapshot 18 19.PHONY: bsd bootblocks 20 21.endif # DESTDIR check 22