Add a kernel-toolchains target like the toolchains target, but building only

the parts of the toolchain necessary to build kernels.
This commit is contained in:
Juli Mallett 2012-03-13 00:38:49 +00:00
parent 089e2c44f4
commit 3e95821f19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232907

View file

@ -18,6 +18,7 @@
# reinstallkernel.debug
# kernel - buildkernel + installkernel.
# kernel-toolchain - Builds the subset of world necessary to build a kernel
# kernel-toolchains - Build kernel-toolchain for all universe targets.
# doxygen - Build API documentation of the kernel, needs doxygen.
# update - Convenient way to update your source tree(s).
# check-old - List obsolete directories/files/libraries.
@ -317,6 +318,9 @@ tinderbox:
toolchains:
@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
kernel-toolchains:
@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe
#
# universe
#