xref: /openbsd/etc/etc.landisk/Makefile.inc (revision 7b36286a)
1#	$OpenBSD: Makefile.inc,v 1.2 2006/11/12 21:45:19 deraadt 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/xxboot ${DESTDIR}/snapshot
17	cp ${DESTDIR}/usr/mdec/boot ${DESTDIR}/snapshot
18
19.PHONY: bsd bootblocks
20
21.endif	# DESTDIR check
22