summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2012-03-13 00:38:49 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2012-03-13 00:38:49 +0000
commit3e95821f1964e37af9db7584cc8d52a14f3528f1 (patch)
treeb0b4ea922ca5c0321abe071fec5e03dc48222ede /Makefile
parent089e2c44f4aa39b6f2f9fff47ed9cd118fa1b859 (diff)
downloadsrc-test2-3e95821f1964e37af9db7584cc8d52a14f3528f1.tar.gz
src-test2-3e95821f1964e37af9db7584cc8d52a14f3528f1.zip
Add a kernel-toolchains target like the toolchains target, but building only
the parts of the toolchain necessary to build kernels.
Notes
Notes: svn path=/head/; revision=232907
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
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
#