Makefile.inc revision 1.3
1# $NetBSD: Makefile.inc,v 1.3 1998/06/28 09:38:44 fair 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} && make clean && make depend && make && \ 22 cp netbsd ${DESTDIR}/snapshot/netbsd.${kernel} 23.endfor 24 25distribution: pcs750.bin 26 27pcs750.bin: 28 (cd etc.vax;uudecode pcs750.bin.uu) 29 (cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \ 30 ${DESTDIR}/) 31 32.endif # DESTDIR check 33