svn commit: r348458 - stable/12

Mark Johnston markj at FreeBSD.org
Fri May 31 15:05:55 UTC 2019


Author: markj
Date: Fri May 31 15:05:54 2019
New Revision: 348458
URL: https://svnweb.freebsd.org/changeset/base/348458

Log:
  MFC r348241:
  Modernize the MAKE_JUST_KERNELS hint in the top-level makefile.

Modified:
  stable/12/Makefile
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/Makefile
==============================================================================
--- stable/12/Makefile	Fri May 31 14:59:40 2019	(r348457)
+++ stable/12/Makefile	Fri May 31 15:05:54 2019	(r348458)
@@ -4,7 +4,8 @@
 # The user-driven targets are:
 #
 # universe            - *Really* build *everything* (buildworld and
-#                       all kernels on all architectures).
+#                       all kernels on all architectures).  Define the
+#                       MAKE_JUST_KERNELS variable to only build kernels.
 # tinderbox           - Same as universe, but presents a list of failed build
 #                       targets and exits with an error if there were any.
 # buildworld          - Rebuild *everything*, including glue to help do
@@ -45,12 +46,6 @@
 # native-xtools-install
 #                     - Install the files to the given DESTDIR/NXTP where
 #                       NXTP defaults to /nxb-bin.
-# 
-# "quick" way to test all kernel builds:
-# 	_jflag=`sysctl -n hw.ncpu`
-# 	_jflag=$(($_jflag * 2))
-# 	[ $_jflag -gt 12 ] && _jflag=12
-# 	make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
 #
 # This makefile is simple by design. The FreeBSD make automatically reads
 # the /usr/share/mk/sys.mk unless the -m argument is specified on the


More information about the svn-src-all mailing list