From 3e95821f1964e37af9db7584cc8d52a14f3528f1 Mon Sep 17 00:00:00 2001 From: Juli Mallett Date: Tue, 13 Mar 2012 00:38:49 +0000 Subject: [PATCH] Add a kernel-toolchains target like the toolchains target, but building only the parts of the toolchain necessary to build kernels. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a22e04389de5..fb1e230ab807 100644 --- a/Makefile +++ b/Makefile @@ -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 #