44f4566e1a
more consistent. To quote the comment in etc/Makefile that describes how it's done: # This target builds the kernels specified by each port. A port may # specify the following kernels: # # KERNEL_SETS The list of kernels that will be # packaged into sets, named # kern-${kernel}.tgz. These kernels # are also placed in the binary/kernels # area of the release package as # netbsd-${kernel}.gz. # # EXTRA_KERNELS Additional kernels to place in the # binary/kernels area of the release # package as netbsd-${kernel}.gz, but # which are not placed into sets. This # allows a port to provide e.g. a netbootable # installation kernel containing a ramdisk. # # BUILD_KERNELS Additional kernels to build which are # not placed into sets nor into the # binary/kernels area of the release # package. These are typically kernels # that are built for inclusion only in # installation disk/CD-ROM/tape images. #
23 lines
610 B
Makefile
23 lines
610 B
Makefile
# $NetBSD: Makefile.inc,v 1.2 2001/11/29 22:46:01 thorpej Exp $
|
|
#
|
|
# etc.sun2/Makefile.inc -- sun2-specific etc Makefile targets
|
|
#
|
|
|
|
BIN3+= etc.sun2/ttyaction
|
|
|
|
KERNEL_SETS= GENERIC FOURMEG DISKLESS
|
|
|
|
EXTRA_KERNELS= INSTALL
|
|
|
|
BUILD_KERNELS= RAMDISK
|
|
|
|
snap_md_post:
|
|
# Build the ramdisk image and patch it into the ramdisk kernels.
|
|
# Build the miniroot, etc. and copy all to the release area.
|
|
.ifndef UPDATE
|
|
cd ${.CURDIR}/../distrib/sun2 && ${MAKE} clean
|
|
.endif
|
|
cd ${.CURDIR}/../distrib/sun2 && \
|
|
${MAKE} depend && ${MAKE} ${_J} && ${MAKE} release
|
|
cd ${.CURDIR}/../distrib/notes && ${MAKE} && ${MAKE} release
|