1 # $NetBSD: Makefile.inc,v 1.1 1998/11/18 08:49:33 sakamoto Exp $ 2 # 3 # etc.bebox/Makefile.inc -- bebox-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 11 KERNSRCDIR?= ${.CURDIR:C/[^\/]+$//}sys 12 KERNOBJDIR?= ${KERNSRCDIR}/arch/${MACHINE}/compile 13 KERNCONFDIR?= ${KERNSRCDIR}/arch/${MACHINE}/conf 14 15 snap_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 26 .endif # DESTDIR check 27