svn commit: r232907 - head
Juli Mallett
jmallett at FreeBSD.org
Tue Mar 13 00:38:50 UTC 2012
Author: jmallett
Date: Tue Mar 13 00:38:49 2012
New Revision: 232907
URL: http://svn.freebsd.org/changeset/base/232907
Log:
Add a kernel-toolchains target like the toolchains target, but building only
the parts of the toolchain necessary to build kernels.
Modified:
head/Makefile
Modified: head/Makefile
==============================================================================
--- head/Makefile Mon Mar 12 22:13:17 2012 (r232906)
+++ head/Makefile Tue Mar 13 00:38:49 2012 (r232907)
@@ -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
#
More information about the svn-src-all
mailing list