Makefile.inc revision 1.4
1# $NetBSD: Makefile.inc,v 1.4 1998/10/09 10:41:42 itohy Exp $ 2# 3# etc.vax/Makefile.inc -- vax-specific etc Makefile targets 4# 5 6.ifdef DESTDIR 7 8# the regular expression does a basename(1) on .CURDIR so that we don't 9# have to keep looking up .. at compile time. 10 11KERNSRCDIR?= ${.CURDIR:C/[^\/]+$//}sys 12KERNOBJDIR?= ${KERNSRCDIR}/arch/${MACHINE}/compile 13KERNCONFDIR?= ${KERNSRCDIR}/arch/${MACHINE}/conf 14 15snap_md: 16.for kernel in GENERIC 17 cd ${KERNCONFDIR} && config \ 18 -b ${KERNOBJDIR}/${kernel} \ 19 -s ${KERNSRCDIR} \ 20 ${kernel} 21 cd ${KERNOBJDIR}/${kernel} && \ 22 ${MAKE} clean && ${MAKE} depend && ${MAKE} && \ 23 cp netbsd ${DESTDIR}/snapshot/netbsd.${kernel} 24.endfor 25 26distribution: pcs750.bin 27 28pcs750.bin: 29 (cd etc.vax;uudecode pcs750.bin.uu) 30 (cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \ 31 ${DESTDIR}/) 32 33.endif # DESTDIR check 34