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:
parent
089e2c44f4
commit
3e95821f19
4
Makefile
4
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
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user