75f8e74b32
1. Provide a consistent and extensible framework for compiling kernels for the "make snapshot" target. 2. Add OBJDIR support for the "make snapshot" target, in the form of three new make variables: KERNOBJDIR, KERNSRCDIR, and KERNCONFDIR. Default values are in the Makefile.inc, and for OBJDIR they should be defined in /etc/mk.conf as KERNSRCDIR=${BSDSRCDIR}/sys KERNOBJDIR=${BSDOBJDIR}/sys/arch/${MACHINE}/compile The next step is to make a new target in the src/etc/Makefile for "release" (or something like that) to make release(7) format files.
28 lines
718 B
Makefile
28 lines
718 B
Makefile
# $NetBSD: Makefile.inc,v 1.6 1998/06/28 09:38:43 fair Exp $
|
|
#
|
|
# etc.sun3/Makefile.inc -- sun3-specific etc Makefile targets
|
|
#
|
|
|
|
BIN3+= etc.sun3/ttyaction
|
|
|
|
.ifdef DESTDIR
|
|
|
|
# the regular expression does a basename(1) on .CURDIR so that we don't
|
|
# have to keep looking up .. at compile time.
|
|
|
|
KERNSRCDIR?= ${.CURDIR:C/[^\/]+$//}sys
|
|
KERNOBJDIR?= ${KERNSRCDIR}/arch/${MACHINE}/compile
|
|
KERNCONFDIR?= ${KERNSRCDIR}/arch/${MACHINE}/conf
|
|
|
|
snap_md:
|
|
.for kernel in GENERIC GENERIC3X
|
|
cd ${KERNCONFDIR} && config \
|
|
-b ${KERNOBJDIR}/${kernel} \
|
|
-s ${KERNSRCDIR} \
|
|
${kernel}
|
|
cd ${KERNOBJDIR}/${kernel} && make clean && make depend && make && \
|
|
cp netbsd ${DESTDIR}/snapshot/netbsd.${kernel}
|
|
.endfor
|
|
|
|
.endif # DESTDIR check
|