]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
tmpfs: add the "pgread" mount option to the allowed options list for mount
[FreeBSD/FreeBSD.git] / Makefile.inc1
1 #
2 # $FreeBSD$
3 #
4 # Make command line options:
5 #       -DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6 #       -DNO_CLEAN do not clean at all
7 #       -DDB_FROM_SRC use the user/group databases in src/etc instead of
8 #           the system database when installing.
9 #       -DNO_SHARE do not go into share subdir
10 #       -DKERNFAST define NO_KERNEL{CONFIG,CLEAN,OBJ}
11 #       -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
12 #       -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
13 #       -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
14 #       -DNO_ROOT install without using root privilege
15 #       -DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects
16 #       LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
17 #       LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list
18 #       LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target
19 #       LOCAL_MTREE="list of mtree files" to process to allow local directories
20 #           to be created before files are installed
21 #       LOCAL_LEGACY_DIRS="list of dirs" to add additional dirs to the legacy
22 #           target
23 #       LOCAL_BSTOOL_DIRS="list of dirs" to add additional dirs to the
24 #           bootstrap-tools target
25 #       LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools
26 #           target
27 #       LOCAL_XTOOL_DIRS="list of dirs" to add additional dirs to the
28 #           cross-tools target
29 #       METALOG="path to metadata log" to write permission and ownership
30 #           when NO_ROOT is set.  (default: ${DESTDIR}/${DISTDIR}/METALOG,
31 #           check /etc/make.conf for DISTDIR)
32 #       TARGET="machine" to crossbuild world for a different machine type
33 #       TARGET_ARCH= may be required when a TARGET supports multiple endians
34 #       BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL})
35 #       WORLD_FLAGS= additional flags to pass to make(1) during buildworld
36 #       KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel
37 #       SUBDIR_OVERRIDE="list of dirs" to build rather than everything.
38 #           All libraries and includes, and some build tools will still build.
39
40 #
41 # The intended user-driven targets are:
42 # buildworld  - rebuild *everything*, including glue to help do upgrades
43 # installworld- install everything built by "buildworld"
44 # checkworld  - run test suite on installed world
45 # doxygen     - build API documentation of the kernel
46 #
47 # Standard targets (not defined here) are documented in the makefiles in
48 # /usr/share/mk.  These include:
49 #               obj depend all install clean cleandepend cleanobj
50
51 .if !defined(TARGET) || !defined(TARGET_ARCH)
52 .error "Both TARGET and TARGET_ARCH must be defined."
53 .endif
54
55 .if make(showconfig) || make(test-system-*)
56 _MKSHOWCONFIG=  t
57 .endif
58
59 SRCDIR?=        ${.CURDIR}
60 LOCALBASE?=     /usr/local
61
62 .include "share/mk/src.tools.mk"
63
64 # Cross toolchain changes must be in effect before bsd.compiler.mk
65 # so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes.
66 .if defined(CROSS_TOOLCHAIN)
67 .if exists(${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk)
68 .include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk"
69 .elif exists(/usr/share/toolchains/${CROSS_TOOLCHAIN}.mk)
70 .include "/usr/share/toolchains/${CROSS_TOOLCHAIN}.mk"
71 .elif exists(${CROSS_TOOLCHAIN})
72 .include "${CROSS_TOOLCHAIN}"
73 .else
74 .error CROSS_TOOLCHAIN ${CROSS_TOOLCHAIN} not found
75 .endif
76 CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}"
77 .endif
78 .if defined(CROSS_TOOLCHAIN_PREFIX)
79 CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
80 .endif
81
82 XCOMPILERS=     CC CXX CPP
83 .for COMPILER in ${XCOMPILERS}
84 .if defined(CROSS_COMPILER_PREFIX)
85 X${COMPILER}?=  ${CROSS_COMPILER_PREFIX}${${COMPILER}}
86 .else
87 X${COMPILER}?=  ${${COMPILER}}
88 .endif
89 .endfor
90 # If a full path to an external cross compiler is given, don't build
91 # a cross compiler.
92 .if ${XCC:N${CCACHE_BIN}:M/*}
93 MK_CLANG_BOOTSTRAP=     no
94 # Make sure sub-makes see the option as disabled so the hack in bsd.sys.mk to
95 # work around incompatible headers in Clang's resource directory is enabled.
96 .MAKEOVERRIDES+=        MK_CLANG_BOOTSTRAP
97 .endif
98
99 # Pull in compiler metadata from buildworld/toolchain if possible to avoid
100 # running CC from bsd.compiler.mk.
101 .if make(installworld) || make(install) || make(distributeworld) || \
102     make(stageworld)
103 .-include "${OBJTOP}/toolchain-metadata.mk"
104 .if !defined(_LOADED_TOOLCHAIN_METADATA)
105 .error A build is required first.  You may have the wrong MAKEOBJDIRPREFIX set.
106 .endif
107 .endif
108
109 # Pull in COMPILER_TYPE and COMPILER_FREEBSD_VERSION early. Pull it from the
110 # tree to be friendlier to foreign OS builds. It's safe to do so unconditionally
111 # here since we will always have the right make, unlike in src/Makefile
112 # Don't include bsd.linker.mk yet until XBINUTILS is handled (after src.opts.mk)
113 _NO_INCLUDE_LINKERMK=   t
114 # We also want the X_COMPILER* variables if we are using an external toolchain.
115 _WANT_TOOLCHAIN_CROSS_VARS=     t
116 .include "share/mk/bsd.compiler.mk"
117 .undef _NO_INCLUDE_LINKERMK
118 .undef _WANT_TOOLCHAIN_CROSS_VARS
119 # src.opts.mk depends on COMPILER_FEATURES
120 .include "share/mk/src.opts.mk"
121
122 .if ${TARGET} == ${MACHINE}
123 TARGET_CPUTYPE?=${CPUTYPE}
124 .else
125 TARGET_CPUTYPE?=
126 .endif
127 .if !empty(TARGET_CPUTYPE)
128 _TARGET_CPUTYPE=${TARGET_CPUTYPE}
129 .else
130 _TARGET_CPUTYPE=dummy
131 .endif
132 .if ${TARGET} == "arm"
133 .if ${TARGET_ARCH:Marmv[67]*} != "" && ${TARGET_CPUTYPE:M*soft*} == ""
134 TARGET_ABI=     gnueabihf
135 .else
136 TARGET_ABI=     gnueabi
137 .endif
138 .endif
139 MACHINE_ABI?=   unknown
140 MACHINE_TRIPLE?=${MACHINE_ARCH:S/amd64/x86_64/:C/[hs]f$//:S/mipsn32/mips64/}-${MACHINE_ABI}-freebsd13.2
141 TARGET_ABI?=    unknown
142 TARGET_TRIPLE?= ${TARGET_ARCH:S/amd64/x86_64/:C/[hs]f$//:S/mipsn32/mips64/}-${TARGET_ABI}-freebsd13.2
143 KNOWN_ARCHES?=  aarch64/arm64 \
144                 amd64 \
145                 armv6/arm \
146                 armv7/arm \
147                 i386 \
148                 mips \
149                 mipsel/mips \
150                 mips64el/mips \
151                 mipsn32el/mips \
152                 mips64/mips \
153                 mipsn32/mips \
154                 mipshf/mips \
155                 mipselhf/mips \
156                 mips64elhf/mips \
157                 mips64hf/mips \
158                 powerpc \
159                 powerpc64/powerpc \
160                 powerpc64le/powerpc \
161                 powerpcspe/powerpc \
162                 riscv64/riscv \
163                 riscv64sf/riscv
164
165 .if ${TARGET} == ${TARGET_ARCH}
166 _t=             ${TARGET}
167 .else
168 _t=             ${TARGET_ARCH}/${TARGET}
169 .endif
170 .for _t in ${_t}
171 .if empty(KNOWN_ARCHES:M${_t})
172 .error Unknown target ${TARGET_ARCH}:${TARGET}.
173 .endif
174 .endfor
175
176 .if ${.MAKE.OS} != "FreeBSD"
177 CROSSBUILD_HOST=${.MAKE.OS}
178 .if ${.MAKE.OS} != "Linux" && ${.MAKE.OS} != "Darwin"
179 .warning "Unsupported crossbuild system: ${.MAKE.OS}. Build will probably fail!"
180 .endif
181 # We need to force NO_ROOT/DB_FROM_SRC builds when building on other operating
182 # systems since the BSD.foo.dist specs contain users and groups that do not
183 # exist by default on a Linux/MacOS system.
184 NO_ROOT:=       1
185 DB_FROM_SRC:=   1
186 .export NO_ROOT
187 .endif
188
189 # If all targets are disabled for system llvm then don't expect it to work
190 # for cross-builds.
191 .if !defined(TOOLS_PREFIX) && ${MK_LLVM_TARGET_ALL} == "no" && \
192     ${MACHINE} != ${TARGET} && ${MACHINE_ARCH} != ${TARGET_ARCH} && \
193     !make(showconfig)
194 MK_SYSTEM_COMPILER=     no
195 MK_SYSTEM_LINKER=       no
196 .endif
197
198 # Handle external binutils.
199 .if defined(CROSS_TOOLCHAIN_PREFIX)
200 CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
201 .endif
202 XBINUTILS=      AS AR ELFCTL LD NM OBJCOPY RANLIB SIZE STRINGS STRIPBIN
203 .for BINUTIL in ${XBINUTILS}
204 .if defined(CROSS_BINUTILS_PREFIX) && \
205     exists(${CROSS_BINUTILS_PREFIX}/${${BINUTIL}})
206 X${BINUTIL}?=   ${CROSS_BINUTILS_PREFIX:C,/*$,,}/${${BINUTIL}}
207 .else
208 X${BINUTIL}?=   ${${BINUTIL}}
209 .endif
210 .endfor
211
212 # If a full path to an external linker is given, don't build lld.
213 .if ${XLD:M/*}
214 MK_LLD_BOOTSTRAP=       no
215 .endif
216
217 # We also want the X_LINKER* variables if we are using an external toolchain.
218 _WANT_TOOLCHAIN_CROSS_VARS=     t
219 .include "share/mk/bsd.linker.mk"
220 .undef _WANT_TOOLCHAIN_CROSS_VARS
221
222 # Begin WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD
223
224 # WITH_SYSTEM_COMPILER - Pull in needed values and make a decision.
225
226 # Check if there is a local compiler that can satisfy as an external compiler.
227 # Which compiler is expected to be used?
228 .if ${MK_CLANG_BOOTSTRAP} == "yes"
229 WANT_COMPILER_TYPE=     clang
230 .else
231 WANT_COMPILER_TYPE=
232 .endif
233
234 .if !defined(WANT_COMPILER_FREEBSD_VERSION) && !make(showconfig) && \
235     !make(test-system-linker)
236 .if ${WANT_COMPILER_TYPE} == "clang"
237 WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h
238 WANT_COMPILER_FREEBSD_VERSION!= \
239         awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \
240         ${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
241 WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc
242 WANT_COMPILER_VERSION!= \
243         awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
244         ${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
245 .endif
246 .export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION
247 .endif  # !defined(WANT_COMPILER_FREEBSD_VERSION)
248
249 # It needs to be the same revision as we would build for the bootstrap.
250 # If the expected vs CC is different then we can't skip.
251 # GCC cannot be used for cross-arch yet.  For clang we pass -target later if
252 # TARGET_ARCH!=MACHINE_ARCH.
253 .if ${MK_SYSTEM_COMPILER} == "yes" && \
254     defined(WANT_COMPILER_FREEBSD_VERSION) && \
255     ${MK_CLANG_BOOTSTRAP} == "yes" && \
256     !make(xdev*) && \
257     ${X_COMPILER_TYPE} == ${WANT_COMPILER_TYPE} && \
258     (${X_COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
259     ${X_COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \
260     ${X_COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION}
261 # Everything matches, disable the bootstrap compiler.
262 MK_CLANG_BOOTSTRAP=     no
263 USING_SYSTEM_COMPILER=  yes
264 .endif  # ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE}
265
266 # WITH_SYSTEM_LD - Pull in needed values and make a decision.
267
268 # Check if there is a local linker that can satisfy as an external linker.
269 # Which linker is expected to be used?
270 .if ${MK_LLD_BOOTSTRAP} == "yes"
271 WANT_LINKER_TYPE=               lld
272 .else
273 WANT_LINKER_TYPE=
274 .endif
275
276 .if !defined(WANT_LINKER_FREEBSD_VERSION) && !make(showconfig) && \
277     !make(test-system-compiler)
278 .if ${WANT_LINKER_TYPE} == "lld"
279 WANT_LINKER_FREEBSD_VERSION_FILE= lib/clang/include/lld/Common/Version.inc
280 WANT_LINKER_FREEBSD_VERSION!= \
281         awk '$$2 == "LLD_FREEBSD_VERSION" {print $$3}' \
282         ${SRCDIR}/${WANT_LINKER_FREEBSD_VERSION_FILE} || echo unknown
283 WANT_LINKER_VERSION_FILE= lib/clang/include/lld/Common/Version.inc
284 WANT_LINKER_VERSION!= \
285         awk '$$2 == "LLD_VERSION_STRING" {gsub("\"", "", $$3); split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
286         ${SRCDIR}/${WANT_LINKER_VERSION_FILE} || echo unknown
287 .else
288 WANT_LINKER_FREEBSD_VERSION_FILE=
289 WANT_LINKER_FREEBSD_VERSION=
290 .endif
291 .export WANT_LINKER_FREEBSD_VERSION WANT_LINKER_VERSION
292 .endif  # !defined(WANT_LINKER_FREEBSD_VERSION)
293
294 .if ${MK_SYSTEM_LINKER} == "yes" && \
295     defined(WANT_LINKER_FREEBSD_VERSION) && \
296     (${MK_LLD_BOOTSTRAP} == "yes") && \
297     !make(xdev*) && \
298     ${X_LINKER_TYPE} == ${WANT_LINKER_TYPE} && \
299     ${X_LINKER_VERSION} == ${WANT_LINKER_VERSION} && \
300     ${X_LINKER_FREEBSD_VERSION} == ${WANT_LINKER_FREEBSD_VERSION}
301 # Everything matches, disable the bootstrap linker.
302 MK_LLD_BOOTSTRAP=       no
303 USING_SYSTEM_LINKER=    yes
304 .endif  # ${WANT_LINKER_TYPE} == ${LINKER_TYPE}
305
306 # WITH_SYSTEM_COMPILER / WITH_SYSTEM_LINKER - Handle defaults and debug.
307 USING_SYSTEM_COMPILER?= no
308 USING_SYSTEM_LINKER?=   no
309
310 TEST_SYSTEM_COMPILER_VARS= \
311         USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \
312         MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP \
313         WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \
314         WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \
315         CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \
316         COMPILER_FREEBSD_VERSION \
317         XCC X_COMPILER_TYPE X_COMPILER_FEATURES X_COMPILER_VERSION \
318         X_COMPILER_FREEBSD_VERSION
319 TEST_SYSTEM_LINKER_VARS= \
320         USING_SYSTEM_LINKER MK_SYSTEM_LINKER \
321         MK_LLD_BOOTSTRAP \
322         WANT_LINKER_TYPE WANT_LINKER_VERSION WANT_LINKER_VERSION_FILE \
323         WANT_LINKER_FREEBSD_VERSION WANT_LINKER_FREEBSD_VERSION_FILE \
324         LD LINKER_TYPE LINKER_FEATURES LINKER_VERSION \
325         LINKER_FREEBSD_VERSION \
326         XLD X_LINKER_TYPE X_LINKER_FEATURES X_LINKER_VERSION \
327         X_LINKER_FREEBSD_VERSION
328
329 .for _t in compiler linker
330 test-system-${_t}: .PHONY
331 .for v in ${TEST_SYSTEM_${_t:tu}_VARS}
332         ${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}"
333 .endfor
334 .endfor
335 .if (make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \
336     make(toolchain) || make(_cross-tools))
337 .if ${USING_SYSTEM_COMPILER} == "yes"
338 .info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree.  Not bootstrapping a cross-compiler.
339 .elif ${MK_CLANG_BOOTSTRAP} == "yes"
340 .info SYSTEM_COMPILER: libclang will be built for bootstrapping a cross-compiler.
341 .endif
342 .if ${USING_SYSTEM_LINKER} == "yes"
343 .info SYSTEM_LINKER: Determined that LD=${LD} matches the source tree.  Not bootstrapping a cross-linker.
344 .elif ${MK_LLD_BOOTSTRAP} == "yes"
345 .info SYSTEM_LINKER: libclang will be built for bootstrapping a cross-linker.
346 .endif
347 .endif
348
349 # End WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD
350
351 # Store some compiler metadata for use in installworld where we don't
352 # want to invoke CC at all.
353 _TOOLCHAIN_METADATA_VARS=       COMPILER_VERSION \
354                                 COMPILER_TYPE \
355                                 COMPILER_FEATURES \
356                                 COMPILER_FREEBSD_VERSION \
357                                 COMPILER_RESOURCE_DIR \
358                                 LINKER_VERSION \
359                                 LINKER_FEATURES \
360                                 LINKER_TYPE \
361                                 LINKER_FREEBSD_VERSION
362 toolchain-metadata.mk: .PHONY .META
363         @: > ${.TARGET}
364         @echo ".info Using cached toolchain metadata from build at $$(hostname) on $$(date)" \
365             > ${.TARGET}
366         @echo "_LOADED_TOOLCHAIN_METADATA=t" >> ${.TARGET}
367 .for v in ${_TOOLCHAIN_METADATA_VARS}
368         @echo "${v}=${${v}}" >> ${.TARGET}
369         @echo "X_${v}=${X_${v}}" >> ${.TARGET}
370 .endfor
371         @echo ".export ${_TOOLCHAIN_METADATA_VARS}" >> ${.TARGET}
372         @echo ".export ${_TOOLCHAIN_METADATA_VARS:C,^,X_,}" >> ${.TARGET}
373
374
375 # We must do lib/ and libexec/ before bin/ in case of a mid-install error to
376 # keep the users system reasonably usable.  For static->dynamic root upgrades,
377 # we don't want to install a dynamic binary without rtld and the needed
378 # libraries.  More commonly, for dynamic root, we don't want to install a
379 # binary that requires a newer library version that hasn't been installed yet.
380 # This ordering is not a guarantee though.  The only guarantee of a working
381 # system here would require fine-grained ordering of all components based
382 # on their dependencies.
383 .if !empty(SUBDIR_OVERRIDE)
384 SUBDIR= ${SUBDIR_OVERRIDE}
385 .else
386 SUBDIR= lib libexec
387 # Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR
388 # of a LOCAL_DIRS directory.  This allows LOCAL_DIRS=foo and
389 # LOCAL_LIB_DIRS=foo/lib to behave as expected.
390 .for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|}
391 _REDUNDANT_LIB_DIRS+=    ${LOCAL_LIB_DIRS:M${_DIR}*}
392 .endfor
393 .for _DIR in ${LOCAL_LIB_DIRS}
394 .if ${_DIR} == ".WAIT" || (empty(_REDUNDANT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile))
395 SUBDIR+=        ${_DIR}
396 .endif
397 .endfor
398 .if !defined(NO_ROOT) && (make(installworld) || make(install))
399 # Ensure libraries are installed before progressing.
400 SUBDIR+=.WAIT
401 .endif
402 SUBDIR+=bin
403 .if ${MK_CDDL} != "no"
404 SUBDIR+=cddl
405 .endif
406 SUBDIR+=gnu include
407 .if ${MK_KERBEROS} != "no"
408 SUBDIR+=kerberos5
409 .endif
410 .if ${MK_RESCUE} != "no"
411 SUBDIR+=rescue
412 .endif
413 SUBDIR+=sbin
414 .if ${MK_CRYPT} != "no"
415 SUBDIR+=secure
416 .endif
417 .if !defined(NO_SHARE)
418 SUBDIR+=share
419 .endif
420 .if ${MK_BOOT} != "no"
421 SUBDIR+=stand
422 .endif
423 SUBDIR+=sys usr.bin usr.sbin
424 .if ${MK_TESTS} != "no"
425 SUBDIR+=        tests
426 .endif
427
428 # Local directories are built in parallel with the base system directories.
429 # Users may insert a .WAIT directive at the beginning or elsewhere within
430 # the LOCAL_DIRS and LOCAL_LIB_DIRS lists as needed.
431 .for _DIR in ${LOCAL_DIRS}
432 .if ${_DIR} == ".WAIT" || exists(${.CURDIR}/${_DIR}/Makefile)
433 SUBDIR+=        ${_DIR}
434 .endif
435 .endfor
436
437 # We must do etc/ last as it hooks into building the man whatis file
438 # by calling 'makedb' in share/man.  This is only relevant for
439 # install/distribute so they build the whatis file after every manpage is
440 # installed.
441 .if make(installworld) || make(install)
442 SUBDIR+=.WAIT
443 .endif
444 SUBDIR+=etc
445
446 .endif  # !empty(SUBDIR_OVERRIDE)
447
448 .if defined(NOCLEAN)
449 .warning The src.conf WITHOUT_CLEAN option can now be used instead of NOCLEAN.
450 MK_CLEAN:=      no
451 .endif
452 .if defined(NO_CLEAN)
453 .info The src.conf WITHOUT_CLEAN option can now be used instead of NO_CLEAN.
454 MK_CLEAN:=      no
455 .endif
456 .if defined(NO_CLEANDIR)
457 CLEANDIR=       clean cleandepend
458 .else
459 CLEANDIR=       cleandir
460 .endif
461
462 .if defined(WORLDFAST)
463 MK_CLEAN:=      no
464 NO_OBJWALK=     t
465 .endif
466
467 .if ${MK_META_MODE} == "yes"
468 # If filemon is used then we can rely on the build being incremental-safe.
469 # The .meta files will also track the build command and rebuild should
470 # it change.
471 .if empty(.MAKE.MODE:Mnofilemon)
472 MK_CLEAN:=      no
473 .endif
474 .endif
475 .if defined(NO_OBJWALK) || ${MK_AUTO_OBJ} == "yes"
476 NO_OBJWALK=     t
477 NO_KERNELOBJ=   t
478 .endif
479 .if !defined(NO_OBJWALK)
480 _obj=           obj
481 .endif
482
483 LOCAL_TOOL_DIRS?=
484 PACKAGEDIR?=    ${DESTDIR}/${DISTDIR}
485
486 .if empty(SHELL:M*csh*)
487 BUILDENV_SHELL?=${SHELL}
488 .else
489 BUILDENV_SHELL?=/bin/sh
490 .endif
491
492 .if !defined(_MKSHOWCONFIG)
493 .if !defined(VCS_REVISION) || empty(VCS_REVISION)
494 .if !defined(SVNVERSION_CMD) || empty(SVNVERSION_CMD)
495 . for _D in ${PATH:S,:, ,g}
496 .  if exists(${_D}/svnversion)
497 SVNVERSION_CMD?=${_D}/svnversion
498 .  endif
499 .  if exists(${_D}/svnliteversion)
500 SVNVERSION_CMD?=${_D}/svnliteversion
501 .  endif
502 . endfor
503 .endif
504 .if defined(SVNVERSION_CMD) && !empty(SVNVERSION_CMD)
505 _VCS_REVISION?= $$(eval ${SVNVERSION_CMD} ${SRCDIR})
506 . if !empty(_VCS_REVISION)
507 VCS_REVISION=   $$(echo r${_VCS_REVISION})
508 .export VCS_REVISION
509 . endif
510 .endif
511 .endif
512
513 .if !defined(GIT_CMD) || empty(GIT_CMD)
514 . for _P in /usr/bin /usr/local/bin
515 .  if exists(${_P}/git)
516 GIT_CMD=   ${_P}/git
517 .  endif
518 . endfor
519 .export GIT_CMD
520 .endif
521
522 .if !defined(OSRELDATE)
523 .if exists(/usr/include/osreldate.h)
524 OSRELDATE!=     awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
525                 /usr/include/osreldate.h
526 .else
527 OSRELDATE=      0
528 .endif
529 .export OSRELDATE
530 .endif
531
532 # Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION.
533 .for _V in BRANCH REVISION
534 .if !defined(_${_V})
535 _${_V}!=        eval $$(awk '/^${_V}=/{print}' ${SRCTOP}/sys/conf/newvers.sh); echo $$${_V}
536 .export _${_V}
537 .endif
538 .endfor
539 .if !defined(SRCRELDATE)
540 SRCRELDATE!=    awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
541                 ${SRCDIR}/sys/sys/param.h
542 .export SRCRELDATE
543 .endif
544 .if !defined(VERSION)
545 VERSION=        FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
546 .export VERSION
547 .endif
548
549 .if !defined(PKG_VERSION)
550 _STRTIMENOW=    %Y%m%d%H%M%S
551 _TIMENOW=       ${_STRTIMENOW:gmtime}
552 .if ${_BRANCH:MCURRENT*} || ${_BRANCH:MSTABLE*} || ${_BRANCH:MPRERELEASE*}
553 _REVISION:=     ${_REVISION:R}
554 EXTRA_REVISION= .snap${_TIMENOW}
555 .elif ${_BRANCH:MALPHA*}
556 EXTRA_REVISION= .a${_BRANCH:C/ALPHA([0-9]+).*/\1/}.${_TIMENOW}
557 .elif ${_BRANCH:MBETA*}
558 EXTRA_REVISION= .b${_BRANCH:C/BETA([0-9]+).*/\1/}.${_TIMENOW}
559 .elif ${_BRANCH:MRC*}
560 EXTRA_REVISION= .rc${_BRANCH:C/RC([0-9]+).*/\1/}.${_TIMENOW}
561 .elif ${_BRANCH:M*-p*}
562 EXTRA_REVISION= p${_BRANCH:C/.*-p([0-9]+$)/\1/}
563 .endif
564 PKG_VERSION:=   ${_REVISION}${EXTRA_REVISION:C/[[:space:]]//g}
565 .endif
566 .endif  # !defined(PKG_VERSION)
567
568 .if !defined(PKG_TIMESTAMP)
569 TIMEEPOCHNOW=           %s
570 SOURCE_DATE_EPOCH=      ${TIMEEPOCHNOW:gmtime}
571 .else
572 SOURCE_DATE_EPOCH=      ${PKG_TIMESTAMP}
573 .endif
574
575 PKG_NAME_PREFIX?=       FreeBSD
576 PKG_MAINTAINER?=        re@FreeBSD.org
577 PKG_WWW?=               https://www.FreeBSD.org
578 .export PKG_NAME_PREFIX
579 .export PKG_MAINTAINER
580 .export PKG_WWW
581
582 .if !defined(_MKSHOWCONFIG)
583 _CPUTYPE!=      MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} -f /dev/null \
584                 -m ${.CURDIR}/share/mk MK_AUTO_OBJ=no -V CPUTYPE
585 .if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
586 .error CPUTYPE global should be set with ?=.
587 .endif
588 .endif
589 .if make(buildworld)
590 BUILD_ARCH!=    uname -p
591 # On some Linux systems uname -p returns "unknown" so skip this check there.
592 # This check only exists to tell people to use TARGET_ARCH instead of
593 # MACHINE_ARCH so skipping it when crossbuilding on non-FreeBSD should be fine.
594 .if ${MACHINE_ARCH} != ${BUILD_ARCH} && ${.MAKE.OS} == "FreeBSD"
595 .error To cross-build, set TARGET_ARCH.
596 .endif
597 .endif
598 WORLDTMP?=      ${OBJTOP}/tmp
599 BPATH=          ${CCACHE_WRAPPER_PATH_PFX}${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin:${WORLDTMP}/legacy/usr/libexec
600 XPATH=          ${WORLDTMP}/bin:${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin
601
602 # When building we want to find the cross tools before the host tools in ${BPATH}.
603 # We also need to add UNIVERSE_TOOLCHAIN_PATH so that we can find the shared
604 # toolchain files (clang, lld, etc.) during make universe/tinderbox
605 STRICTTMPPATH=  ${XPATH}:${BPATH}:${UNIVERSE_TOOLCHAIN_PATH}
606 # We should not be using tools from /usr/bin accidentally since this could cause
607 # the build to break on other systems that don't have that tool. For now we
608 # still allow using the old behaviour (inheriting $PATH) if
609 # BUILD_WITH_STRICT_TMPPATH is set to 0 but this will eventually be removed.
610
611 # Currently strict $PATH can cause build failures and does not work yet with
612 # USING_SYSTEM_LINKER/USING_SYSTEM_COMPILER. Once these issues have been
613 # resolved it will be turned on by default.
614 BUILD_WITH_STRICT_TMPPATH?=0
615 .if defined(CROSSBUILD_HOST)
616 # When building on non-FreeBSD we can't rely on the tools in /usr/bin being compatible
617 # with what FreeBSD expects. Therefore we only use tools from STRICTTMPPATH
618 # during the world build stage. We build most tools during the bootstrap-tools
619 # phase but symlink host tools that are known to work instead of building them
620 BUILD_WITH_STRICT_TMPPATH:=1
621 .endif
622 .if ${BUILD_WITH_STRICT_TMPPATH} != 0
623 TMPPATH=        ${STRICTTMPPATH}
624 .else
625 TMPPATH=        ${STRICTTMPPATH}:${PATH}
626 .endif
627
628 #
629 # Avoid running mktemp(1) unless actually needed.
630 # It may not be functional, e.g., due to new ABI
631 # when in the middle of installing over this system.
632 #
633 .if make(distributeworld) || make(installworld) || make(stageworld)
634 .if ${BUILD_WITH_STRICT_TMPPATH} != 0
635 MKTEMP=${WORLDTMP}/legacy/usr/bin/mktemp
636 .if !exists(${MKTEMP})
637 .error "mktemp binary doesn't exist in expected location: ${MKTEMP}"
638 .endif
639 .else
640 MKTEMP=mktemp
641 .endif
642 INSTALLTMP!=    ${MKTEMP} -d -u -t install
643
644 .if ${.MAKE.OS} == "FreeBSD"
645 # When building on FreeBSD we always copy the host tools instead of linking
646 # into INSTALLTMP to avoid issues with incompatible libraries (see r364030).
647 # Note: we could create links if we don't intend to update the current machine.
648 INSTALLTMP_COPY_HOST_TOOL=cp
649 .else
650 # However, this is not necessary on Linux/macOS. Additionally, copying the host
651 # tools to another directory with cp results in AMFI Launch Constraint
652 # Violations on macOS Ventura as part of its System Integrity Protection.
653 INSTALLTMP_COPY_HOST_TOOL=ln -s
654 .endif
655 .endif
656
657 .if make(stagekernel) || make(distributekernel)
658 TAGS+=          kernel
659 PACKAGE=        kernel
660 .endif
661
662 #
663 # Building a world goes through the following stages
664 #
665 # 1. legacy stage [BMAKE]
666 #       This stage is responsible for creating compatibility
667 #       shims that are needed by the bootstrap-tools,
668 #       build-tools and cross-tools stages. These are generally
669 #       APIs that tools from one of those three stages need to
670 #       build that aren't present on the host.
671 # 1. bootstrap-tools stage [BMAKE]
672 #       This stage is responsible for creating programs that
673 #       are needed for backward compatibility reasons. They
674 #       are not built as cross-tools.
675 # 2. build-tools stage [TMAKE]
676 #       This stage is responsible for creating the object
677 #       tree and building any tools that are needed during
678 #       the build process. Some programs are listed during
679 #       this phase because they build binaries to generate
680 #       files needed to build these programs. This stage also
681 #       builds the 'build-tools' target rather than 'all'.
682 # 3. cross-tools stage [XMAKE]
683 #       This stage is responsible for creating any tools that
684 #       are needed for building the system. A cross-compiler is one
685 #       of them. This differs from build tools in two ways:
686 #       1. the 'all' target is built rather than 'build-tools'
687 #       2. these tools are installed into TMPPATH for stage 4.
688 # 4. world stage [WMAKE]
689 #       This stage actually builds the world.
690 # 5. install stage (optional) [IMAKE]
691 #       This stage installs a previously built world.
692 #
693
694 BOOTSTRAPPING?= 0
695 # Keep these in sync
696 MINIMUM_SUPPORTED_OSREL?= 1002501
697 MINIMUM_SUPPORTED_REL?= 10.3
698
699 # Common environment for world related stages
700 CROSSENV+=      \
701                 MACHINE_ARCH=${TARGET_ARCH} \
702                 MACHINE=${TARGET} \
703                 CPUTYPE=${TARGET_CPUTYPE}
704 .if ${MK_META_MODE} != "no"
705 # Don't rebuild build-tools targets during normal build.
706 CROSSENV+=      BUILD_TOOLS_META=.NOMETA
707 .endif
708 .if defined(TARGET_CFLAGS)
709 CROSSENV+=      ${TARGET_CFLAGS}
710 .endif
711 .if (${TARGET} != ${MACHINE} && !defined(WITH_LOCAL_MODULES)) || \
712     defined(WITHOUT_LOCAL_MODULES)
713 CROSSENV+=      LOCAL_MODULES=
714 .endif
715
716 BOOTSTRAPPING_OSRELDATE?=${OSRELDATE}
717
718 # bootstrap-tools stage
719 BMAKEENV=       INSTALL="sh ${.CURDIR}/tools/install.sh" \
720                 TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \
721                 PATH=${BPATH}:${PATH} \
722                 WORLDTMP=${WORLDTMP} \
723                 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
724 # need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile
725 BSARGS=         DESTDIR= \
726                 OBJTOP='${WORLDTMP}/obj-tools' \
727                 OBJROOT='$${OBJTOP}/' \
728                 MAKEOBJDIRPREFIX= \
729                 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \
730                 BWPHASE=${.TARGET:C,^_,,} \
731                 -DNO_CPU_CFLAGS \
732                 -DNO_LINT \
733                 -DNO_PIC \
734                 -DNO_SHARED \
735                 MK_CTF=no \
736                 MK_CLANG_EXTRAS=no \
737                 MK_CLANG_FORMAT=no \
738                 MK_CLANG_FULL=no \
739                 MK_HTML=no \
740                 MK_MAN=no \
741                 MK_PROFILE=no \
742                 MK_RETPOLINE=no \
743                 MK_SSP=no \
744                 MK_TESTS=no \
745                 MK_WERROR=no \
746                 MK_INCLUDES=yes \
747                 MK_MAN_UTILS=yes
748
749 BMAKE=          \
750                 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
751                 ${BSARGS}
752 .if empty(.MAKEOVERRIDES:MMK_LLVM_TARGET_ALL)
753 BMAKE+=         MK_LLVM_TARGET_ALL=no
754 .endif
755
756 # build-tools stage
757 TMAKE=          \
758                 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
759                 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
760                 DESTDIR= \
761                 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \
762                 BWPHASE=${.TARGET:C,^_,,} \
763                 -DNO_CPU_CFLAGS \
764                 -DNO_LINT \
765                 MK_CTF=no \
766                 MK_CLANG_EXTRAS=no \
767                 MK_CLANG_FORMAT=no \
768                 MK_CLANG_FULL=no \
769                 MK_LLDB=no \
770                 MK_RETPOLINE=no \
771                 MK_SSP=no \
772                 MK_TESTS=no \
773                 MK_WERROR=no
774
775 # cross-tools stage
776 # TOOLS_PREFIX set in BMAKE
777 XMAKE=          ${BMAKE} \
778                 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
779                 MK_CLANG_IS_CC=${MK_CLANG_BOOTSTRAP} \
780                 MK_LLDB=no \
781                 MK_LLVM_BINUTILS=no \
782                 MK_TESTS=no
783
784 # kernel-tools stage
785 KTMAKEENV=      INSTALL="sh ${.CURDIR}/tools/install.sh" \
786                 PATH=${BPATH}:${PATH} \
787                 WORLDTMP=${WORLDTMP} \
788                 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
789
790 KTMAKE=         \
791                 TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \
792                 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
793                 DESTDIR= \
794                 OBJTOP='${WORLDTMP}/obj-kernel-tools' \
795                 OBJROOT='$${OBJTOP}/' \
796                 MAKEOBJDIRPREFIX= \
797                 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \
798                 -DNO_CPU_CFLAGS \
799                 -DNO_LINT \
800                 -DNO_PIC \
801                 -DNO_SHARED \
802                 MK_CTF=no \
803                 MK_HTML=no \
804                 MK_MAN=no \
805                 MK_PROFILE=no \
806                 MK_SSP=no \
807                 MK_RETPOLINE=no \
808                 MK_WERROR=no
809
810 # world stage
811 WMAKEENV=       ${CROSSENV} \
812                 INSTALL="${INSTALL_CMD} -U" \
813                 PATH=${TMPPATH} \
814                 SYSROOT=${WORLDTMP}
815
816 # make hierarchy
817 HMAKE=          PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
818 .if defined(NO_ROOT)
819 HMAKE+=         PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
820 .endif
821
822 CROSSENV+=      CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCXXFLAGS} ${XCFLAGS}" \
823                 CPP="${XCPP} ${XCFLAGS}" \
824                 AS="${XAS}" AR="${XAR}" ELFCTL="${XELFCTL}" LD="${XLD}" \
825                 LLVM_LINK="${XLLVM_LINK}" NM=${XNM} OBJCOPY="${XOBJCOPY}" \
826                 RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \
827                 SIZE="${XSIZE}" STRIPBIN="${XSTRIPBIN}"
828
829 .if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
830 # In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
831 # directory, but the compiler will look in the right place for its
832 # tools so we don't need to tell it where to look.
833 BFLAGS+=        -B${CROSS_BINUTILS_PREFIX}
834 .endif
835
836
837 # The internal bootstrap compiler has a default sysroot set by TOOLS_PREFIX
838 # and target set by TARGET/TARGET_ARCH.  However, there are several needs to
839 # always pass an explicit --sysroot and -target.
840 # - External compiler needs sysroot and target flags.
841 # - External ld needs sysroot.
842 # - To be clear about the use of a sysroot when using the internal compiler.
843 # - Easier debugging.
844 # - Allowing WITH_SYSTEM_COMPILER+WITH_META_MODE to work together due to
845 #   the flip-flopping build command when sometimes using external and
846 #   sometimes using internal.
847 # - Allow using lld which has no support for default paths.
848 .if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX})
849 BFLAGS+=        -B${WORLDTMP}/usr/bin
850 .endif
851 .if ${WANT_COMPILER_TYPE} == gcc || \
852     (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
853 .elif ${WANT_COMPILER_TYPE} == clang || \
854     (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang)
855 XCFLAGS+=       -target ${TARGET_TRIPLE}
856 .endif
857 XCFLAGS+=       --sysroot=${WORLDTMP}
858
859 .if !empty(BFLAGS)
860 XCFLAGS+=       ${BFLAGS}
861 .endif
862
863 .if ${MK_LIB32} == "yes"
864 _LIBCOMPAT= 32
865 .include "Makefile.libcompat"
866 .elif ${MK_LIBSOFT} == "yes"
867 _LIBCOMPAT= SOFT
868 .include "Makefile.libcompat"
869 .endif
870
871 # META_MODE normally ignores host file changes since every build updates
872 # timestamps (see NO_META_IGNORE_HOST in sys.mk).  There are known times
873 # when the ABI breaks though that we want to force rebuilding WORLDTMP
874 # to get updated host tools.
875 .if ${MK_META_MODE} == "yes" && ${MK_CLEAN} == "no" && \
876     !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) && \
877     !defined(_MKSHOWCONFIG)
878 # r318736 - ino64 major ABI breakage
879 META_MODE_BAD_ABI_VERS+=        1200031
880
881 .if !defined(OBJDIR_HOST_OSRELDATE)
882 .if exists(${OBJTOP}/host-osreldate.h)
883 OBJDIR_HOST_OSRELDATE!= \
884     awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
885     ${OBJTOP}/host-osreldate.h
886 .elif exists(${WORLDTMP}/usr/include/osreldate.h)
887 OBJDIR_HOST_OSRELDATE=  0
888 .endif
889 .export OBJDIR_HOST_OSRELDATE
890 .endif
891
892 # Note that this logic is the opposite of normal BOOTSTRAP handling.  We want
893 # to compare the WORLDTMP's OSRELDATE to the host's OSRELDATE.  If the WORLDTMP
894 # is older than the ABI-breakage OSRELDATE of the HOST then we rebuild.
895 .if defined(OBJDIR_HOST_OSRELDATE)
896 .for _ver in ${META_MODE_BAD_ABI_VERS}
897 .if ${OSRELDATE} >= ${_ver} && ${OBJDIR_HOST_OSRELDATE} < ${_ver}
898 _meta_mode_need_rebuild=        ${_ver}
899 .endif
900 .endfor
901 .if defined(_meta_mode_need_rebuild)
902 .info META_MODE: Rebuilding host tools due to ABI breakage in __FreeBSD_version ${_meta_mode_need_rebuild}.
903 NO_META_IGNORE_HOST_HEADERS=    1
904 .export NO_META_IGNORE_HOST_HEADERS
905 .endif  # defined(_meta_mode_need_rebuild)
906 .endif  # defined(OBJDIR_HOST_OSRELDATE)
907 .endif  # ${MK_META_MODE} == "yes" && ${MK_CLEAN} == "no" ...
908 # This is only used for META_MODE+filemon to track what the oldest
909 # __FreeBSD_version is in WORLDTMP.  This purposely does NOT have
910 # a make dependency on /usr/include/osreldate.h as the file should
911 # only be copied when it is missing or meta mode determines it has changed.
912 # Since host files are normally ignored without NO_META_IGNORE_HOST
913 # the file will never be updated unless that flag is specified.  This
914 # allows tracking the oldest osreldate to force rebuilds via
915 # META_MODE_BADABI_REVS above.
916 host-osreldate.h: # DO NOT ADD /usr/include/osreldate.h here
917 .if !defined(CROSSBUILD_HOST)
918         @cp -f /usr/include/osreldate.h ${.TARGET}
919 .else
920         @echo "#ifndef __FreeBSD_version" > ${.TARGET}
921         @echo "#define __FreeBSD_version ${OSRELDATE}" >> ${.TARGET}
922         @echo "#endif" >> ${.TARGET}
923 .endif
924
925 WMAKE=          ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
926                 BWPHASE=${.TARGET:C,^_,,} \
927                 DESTDIR=${WORLDTMP}
928
929 IMAKEENV=       ${CROSSENV}
930 IMAKE=          ${IMAKEENV} ${MAKE} -f Makefile.inc1 \
931                 ${IMAKE_INSTALL} ${IMAKE_MTREE}
932 .if empty(.MAKEFLAGS:M-n)
933 IMAKEENV+=      PATH=${STRICTTMPPATH}:${INSTALLTMP} \
934                 LD_LIBRARY_PATH=${INSTALLTMP} \
935                 PATH_LOCALE=${INSTALLTMP}/locale
936 IMAKE+=         __MAKE_SHELL=${INSTALLTMP}/sh
937 .else
938 IMAKEENV+=      PATH=${TMPPATH}:${INSTALLTMP}
939 .endif
940
941 # When generating install media, do not allow user and group information from
942 # the build host to affect the contents of the distribution.
943 .if make(distributeworld) || make(distrib-dirs) || make(distribution) || \
944     make(stageworld)
945 DB_FROM_SRC=    yes
946 .endif
947
948 .if defined(DB_FROM_SRC)
949 INSTALLFLAGS+=  -N ${.CURDIR}/etc
950 MTREEFLAGS+=    -N ${.CURDIR}/etc
951 .endif
952 _INSTALL_DDIR=  ${DESTDIR}/${DISTDIR}
953 INSTALL_DDIR=   ${_INSTALL_DDIR:S://:/:g:C:/$::}
954 .if defined(NO_ROOT)
955 METALOG?=       ${DESTDIR}/${DISTDIR}/METALOG
956 METALOG:=       ${METALOG:C,//+,/,g}
957 IMAKE+=         -DNO_ROOT METALOG=${METALOG}
958 METALOG_INSTALLFLAGS=   -U -M ${METALOG} -D ${INSTALL_DDIR}
959 INSTALLFLAGS+=  ${METALOG_INSTALLFLAGS}
960 CERTCTLFLAGS=   ${METALOG_INSTALLFLAGS}
961 MTREEFLAGS+=    -W
962 .endif
963 .if defined(BUILD_PKGS)
964 INSTALLFLAGS+=  -h sha256
965 .endif
966 .if defined(DB_FROM_SRC) || defined(NO_ROOT)
967 IMAKE_INSTALL=  INSTALL="${INSTALL_CMD} ${INSTALLFLAGS}"
968 IMAKE_MTREE=    MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}"
969 .endif
970 .if make(distributeworld)
971 CERTCTLDESTDIR= ${DESTDIR}/${DISTDIR}
972 CERTCTLFLAGS+=  -d /base
973 .else
974 CERTCTLDESTDIR= ${DESTDIR}
975 .endif
976 CERTCTLFLAGS+=  -D "${CERTCTLDESTDIR}"
977
978 DESTDIR_MTREEFLAGS=     -deU
979 # When creating worldtmp we don't need to set the directories as owned by root
980 # so we also pass -W
981 WORLDTMP_MTREEFLAGS=    -deUW
982 .if defined(NO_ROOT)
983 # When building with -DNO_ROOT we shouldn't be changing the directories
984 # that are created by mtree to be owned by root/wheel.
985 DESTDIR_MTREEFLAGS+=    -W
986 .endif
987 DISTR_MTREE=    ${MTREE_CMD}
988 .if ${BUILD_WITH_STRICT_TMPPATH} != 0
989 DISTR_MTREE=    ${WORLDTMP}/legacy/usr/sbin/mtree
990 .endif
991 WORLDTMP_MTREE= ${DISTR_MTREE} ${WORLDTMP_MTREEFLAGS}
992 DESTDIR_MTREE=  ${DISTR_MTREE} ${DESTDIR_MTREEFLAGS}
993
994 # kernel stage
995 KMAKEENV=       ${WMAKEENV:NSYSROOT=*}
996 KMAKE=          ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
997
998 #
999 # buildworld
1000 #
1001 # Attempt to rebuild the entire system, with reasonable chance of
1002 # success, regardless of how old your existing system is.
1003 #
1004 _sanity_check: .PHONY .MAKE
1005 .if ${.CURDIR:C/[^,]//g} != ""
1006 #       The m4 build of sendmail files doesn't like it if ',' is used
1007 #       anywhere in the path of it's files.
1008         @echo
1009         @echo "*** Error: path to source tree contains a comma ','"
1010         @echo
1011         @false
1012 .elif ${.CURDIR:M*\:*} != ""
1013 #       Using ':' leaks into PATH and breaks finding cross-tools.
1014         @echo
1015         @echo "*** Error: path to source tree contains a colon ':'"
1016         @echo
1017         @false
1018 .endif
1019
1020 # Our current approach to dependency tracking cannot cope with certain source
1021 # tree changes, particularly with respect to removing source files and
1022 # replacing generated files.  Handle these cases here in an ad-hoc fashion.
1023 _cleanobj_fast_depend_hack: .PHONY
1024         @echo ">>> Deleting stale dependencies...";
1025         sh ${.CURDIR}/tools/build/depend-cleanup.sh ${OBJTOP}
1026
1027 _worldtmp: .PHONY
1028         @echo
1029         @echo "--------------------------------------------------------------"
1030         @echo ">>> Rebuilding the temporary build tree"
1031         @echo "--------------------------------------------------------------"
1032 .if ${MK_CLEAN} == "yes"
1033         rm -rf ${WORLDTMP}
1034 .else
1035 # Note: for delete-old we need to set $PATH to also include the host $PATH
1036 # since otherwise a partial build with missing symlinks in ${WORLDTMP}/legacy/
1037 # will fail to run due to missing binaries. $WMAKE sets PATH to only ${TMPPATH}
1038 # so we remove that assingnment from $WMAKE and prepend the new $PATH
1039         ${_+_}@if [ -e "${WORLDTMP}" ]; then \
1040                 echo ">>> Deleting stale files in build tree..."; \
1041                 cd ${.CURDIR}; env PATH=${TMPPATH}:${PATH} ${WMAKE:NPATH=*} \
1042                     _NO_INCLUDE_COMPILERMK=t -DBATCH_DELETE_OLD_FILES delete-old \
1043                     delete-old-libs >/dev/null; \
1044         fi
1045         rm -rf ${WORLDTMP}/legacy/usr/include
1046 .if ${USING_SYSTEM_COMPILER} == "yes"
1047 .for cc in cc c++
1048         if [ -x ${WORLDTMP}/usr/bin/${cc} ]; then \
1049                 inum=$$(stat -f %i ${WORLDTMP}/usr/bin/${cc}); \
1050                 find ${WORLDTMP}/usr/bin -inum $${inum} -delete; \
1051         fi
1052 .endfor
1053 .endif  # ${USING_SYSTEM_COMPILER} == "yes"
1054 .if ${USING_SYSTEM_LINKER} == "yes"
1055         @rm -f ${WORLDTMP}/usr/bin/ld ${WORLDTMP}/usr/bin/ld.lld
1056 .endif  # ${USING_SYSTEM_LINKER} == "yes"
1057 .endif  # ${MK_CLEAN} == "yes"
1058         @mkdir -p ${WORLDTMP}
1059         @touch ${WORLDTMP}/${.TARGET}
1060 # We can't use mtree to create the worldtmp directories since it may not be
1061 # available on the target system (this happens e.g. when building on non-FreeBSD)
1062         cd ${.CURDIR}/tools/build; \
1063             ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy installdirs
1064 # In order to build without inheriting $PATH we need to add symlinks to the host
1065 # tools in $WORLDTMP for the tools that we don't build during bootstrap-tools
1066         cd ${.CURDIR}/tools/build; \
1067             ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy host-symlinks
1068
1069 _legacy:
1070         @echo
1071         @echo "--------------------------------------------------------------"
1072         @echo ">>> stage 1.1: legacy release compatibility shims"
1073         @echo "--------------------------------------------------------------"
1074         ${_+_}cd ${.CURDIR}; ${BMAKE} legacy
1075 _bootstrap-tools:
1076         @echo
1077         @echo "--------------------------------------------------------------"
1078         @echo ">>> stage 1.2: bootstrap tools"
1079         @echo "--------------------------------------------------------------"
1080         ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
1081         mkdir -p ${WORLDTMP}/usr ${WORLDTMP}/lib/casper ${WORLDTMP}/lib/geom \
1082             ${WORLDTMP}/bin
1083         ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1084             -p ${WORLDTMP}/usr >/dev/null
1085         ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1086             -p ${WORLDTMP}/usr/include >/dev/null
1087         ln -sf ${.CURDIR}/sys ${WORLDTMP}
1088 .if ${MK_DEBUG_FILES} != "no"
1089         ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1090             -p ${WORLDTMP}/usr/lib >/dev/null
1091 .endif
1092 .for _mtree in ${LOCAL_MTREE}
1093         ${WORLDTMP_MTREE} -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
1094 .endfor
1095 _cleanobj:
1096 .if ${MK_CLEAN} == "yes"
1097         @echo
1098         @echo "--------------------------------------------------------------"
1099         @echo ">>> stage 2.1: cleaning up the object tree"
1100         @echo "--------------------------------------------------------------"
1101         # Avoid including bsd.compiler.mk in clean and obj with _NO_INCLUDE_COMPILERMK
1102         # since the restricted $PATH might not contain a valid cc binary
1103         ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t ${CLEANDIR}
1104 .if defined(_LIBCOMPAT)
1105         ${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} _NO_INCLUDE_COMPILERMK=t -f Makefile.inc1 ${CLEANDIR}
1106 .endif
1107 .else
1108         ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack
1109 .endif  # ${MK_CLEAN} == "yes"
1110 _obj:
1111         @echo
1112         @echo "--------------------------------------------------------------"
1113         @echo ">>> stage 2.2: rebuilding the object tree"
1114         @echo "--------------------------------------------------------------"
1115         ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t obj
1116 _build-tools:
1117         @echo
1118         @echo "--------------------------------------------------------------"
1119         @echo ">>> stage 2.3: build tools"
1120         @echo "--------------------------------------------------------------"
1121         ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
1122 _cross-tools:
1123         @echo
1124         @echo "--------------------------------------------------------------"
1125         @echo ">>> stage 3: cross tools"
1126         @echo "--------------------------------------------------------------"
1127         @rm -f ${OBJTOP}/toolchain-metadata.mk
1128         ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
1129         ${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
1130 _build-metadata:
1131         @echo
1132         @echo "--------------------------------------------------------------"
1133         @echo ">>> stage 3.1: recording build metadata"
1134         @echo "--------------------------------------------------------------"
1135         ${_+_}cd ${.CURDIR}; ${WMAKE} toolchain-metadata.mk
1136         ${_+_}cd ${.CURDIR}; ${WMAKE} host-osreldate.h
1137 _includes:
1138         @echo
1139         @echo "--------------------------------------------------------------"
1140         @echo ">>> stage 4.1: building includes"
1141         @echo "--------------------------------------------------------------"
1142 # Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need
1143 # headers from default SUBDIR.  Do SUBDIR_OVERRIDE includes last.
1144         ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \
1145             MK_INCLUDES=yes includes
1146 .if !empty(SUBDIR_OVERRIDE) && make(buildworld)
1147         ${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes
1148 .endif
1149 _libraries:
1150         @echo
1151         @echo "--------------------------------------------------------------"
1152         @echo ">>> stage 4.2: building libraries"
1153         @echo "--------------------------------------------------------------"
1154         ${_+_}cd ${.CURDIR}; \
1155             ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
1156             MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} \
1157             libraries
1158 everything: .PHONY
1159         @echo
1160         @echo "--------------------------------------------------------------"
1161         @echo ">>> stage 4.4: building everything"
1162         @echo "--------------------------------------------------------------"
1163         ${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all
1164
1165 WMAKE_TGTS=
1166 .if !defined(WORLDFAST)
1167 WMAKE_TGTS+=    _sanity_check _worldtmp _legacy
1168 .if empty(SUBDIR_OVERRIDE)
1169 WMAKE_TGTS+=    _bootstrap-tools
1170 .endif
1171 WMAKE_TGTS+=    _cleanobj
1172 .if !defined(NO_OBJWALK)
1173 WMAKE_TGTS+=    _obj
1174 .endif
1175 WMAKE_TGTS+=    _build-tools _cross-tools
1176 WMAKE_TGTS+=    _build-metadata
1177 WMAKE_TGTS+=    _includes
1178 .endif
1179 .if !defined(NO_LIBS)
1180 WMAKE_TGTS+=    _libraries
1181 .endif
1182 .if defined(_LIBCOMPAT) && empty(SUBDIR_OVERRIDE)
1183 WMAKE_TGTS+=    build${libcompat}
1184 .endif
1185 WMAKE_TGTS+=    everything
1186
1187 # record buildworld time in seconds
1188 .if make(buildworld)
1189 _BUILDWORLD_START!= date '+%s'
1190 .export _BUILDWORLD_START
1191 .endif
1192
1193 buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY
1194 .ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
1195
1196 _ncpu_cmd=sysctl -n hw.ncpu 2>/dev/null || nproc 2>/dev/null || echo unknown
1197
1198 buildworld_prologue: .PHONY
1199         @echo "--------------------------------------------------------------"
1200         @echo ">>> World build started on `LC_ALL=C date`"
1201 .if ${TARGET:Mmips}
1202         @echo "--------------------------------------------------------------"
1203         @echo "WARNING: MIPS architecture is gone in FreeBSD 14.0"
1204 .endif
1205         @echo "--------------------------------------------------------------"
1206
1207 buildworld_epilogue: .PHONY
1208         @echo
1209         @echo "--------------------------------------------------------------"
1210         @echo ">>> World build completed on `LC_ALL=C date`"
1211         @seconds=$$(($$(date '+%s') - ${_BUILDWORLD_START})); \
1212           echo -n ">>> World built in $$seconds seconds, "; \
1213           echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}"
1214 .if ${TARGET:Mmips}
1215         @echo "--------------------------------------------------------------"
1216         @echo "WARNING: MIPS architecture is gone in FreeBSD 14.0"
1217 .endif
1218         @echo "--------------------------------------------------------------"
1219
1220 #
1221 # We need to have this as a target because the indirection between Makefile
1222 # and Makefile.inc1 causes the correct PATH to be used, rather than a
1223 # modification of the current environment's PATH.  In addition, we need
1224 # to quote multiword values.
1225 #
1226 buildenvvars: .PHONY
1227         @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@}
1228
1229 .if ${.TARGETS:Mbuildenv}
1230 .if ${.MAKEFLAGS:M-j}
1231 .error The buildenv target is incompatible with -j
1232 .endif
1233 .endif
1234 BUILDENV_DIR?=  ${.CURDIR}
1235 #
1236 # Note: make will report any errors the shell reports. This can
1237 # be odd if the last command in an interactive shell generates an
1238 # error or is terminated by SIGINT. These reported errors look bad,
1239 # but are harmless. Allowing them also allows BUIDLENV_SHELL to
1240 # be a complex command whose status will be returned to the caller.
1241 # Some scripts in tools rely on this behavior to report build errors.
1242 #
1243 buildenv: .PHONY
1244         @echo Entering world for ${TARGET_ARCH}:${TARGET}
1245 .if ${BUILDENV_SHELL:M*zsh*}
1246         @echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE}
1247 .endif
1248         @cd ${BUILDENV_DIR} && env ${WMAKEENV} \
1249         INSTALL="${INSTALL_CMD} ${INSTALLFLAGS}" \
1250         MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}" BUILDENV=1 ${BUILDENV_SHELL}
1251
1252 TOOLCHAIN_TGTS= ${WMAKE_TGTS:Neverything:Nbuild${libcompat}}
1253 toolchain: ${TOOLCHAIN_TGTS} .PHONY
1254 KERNEL_TOOLCHAIN_TGTS=  ${TOOLCHAIN_TGTS:N_obj:N_cleanobj:N_includes:N_libraries}
1255 .if make(kernel-toolchain)
1256 .ORDER: ${KERNEL_TOOLCHAIN_TGTS}
1257 .endif
1258 kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY
1259
1260 #
1261 # installcheck
1262 #
1263 # Checks to be sure system is ready for installworld/installkernel.
1264 #
1265 installcheck: _installcheck_world _installcheck_kernel .PHONY
1266 _installcheck_world: .PHONY
1267         @echo "--------------------------------------------------------------"
1268         @echo ">>> Install check world"
1269         @echo "--------------------------------------------------------------"
1270 _installcheck_kernel: .PHONY
1271         @echo "--------------------------------------------------------------"
1272         @echo ">>> Install check kernel"
1273         @echo "--------------------------------------------------------------"
1274
1275 #
1276 # Require DESTDIR to be set if installing for a different architecture or
1277 # using the user/group database in the source tree.
1278 #
1279 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
1280     defined(DB_FROM_SRC)
1281 .if !make(distributeworld)
1282 _installcheck_world: __installcheck_DESTDIR
1283 _installcheck_kernel: __installcheck_DESTDIR
1284 __installcheck_DESTDIR: .PHONY
1285 .if !defined(DESTDIR) || empty(DESTDIR)
1286         @echo "ERROR: Please set DESTDIR!"; \
1287         false
1288 .endif
1289 .endif
1290 .endif
1291
1292 .if !defined(DB_FROM_SRC)
1293 #
1294 # Check for missing UIDs/GIDs.
1295 #
1296 CHECK_UIDS=     auditdistd
1297 CHECK_GIDS=     audit
1298 CHECK_UIDS+=    ntpd
1299 CHECK_GIDS+=    ntpd
1300 CHECK_UIDS+=    proxy
1301 CHECK_GIDS+=    proxy authpf
1302 CHECK_UIDS+=    smmsp
1303 CHECK_GIDS+=    smmsp
1304 CHECK_UIDS+=    unbound
1305 CHECK_GIDS+=    unbound
1306 _installcheck_world: __installcheck_UGID
1307 __installcheck_UGID: .PHONY
1308 .for uid in ${CHECK_UIDS}
1309         @if ! `id -u ${uid} >/dev/null 2>&1`; then \
1310                 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
1311                 false; \
1312         fi
1313 .endfor
1314 .for gid in ${CHECK_GIDS}
1315         @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
1316                 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
1317                 false; \
1318         fi
1319 .endfor
1320 .endif
1321 #
1322 # If installing over the running system (DESTDIR is / or unset) and the install
1323 # includes rescue, try running rescue from the objdir as a sanity check.  If
1324 # rescue is not functional (e.g., because it depends on a system call not
1325 # supported by the currently running kernel), abort the installation.
1326 #
1327 .if !make(distributeworld) && ${MK_RESCUE} != "no" && \
1328     (empty(DESTDIR) || ${DESTDIR} == "/") && empty(BYPASS_INSTALLCHECK_SH)
1329 _installcheck_world: __installcheck_sh_check
1330 __installcheck_sh_check: .PHONY
1331         @if [ "`${OBJTOP}/rescue/rescue/rescue sh -c 'echo OK'`" != \
1332             OK ]; then \
1333                 echo "rescue/sh check failed, installation aborted" >&2; \
1334                 false; \
1335         fi
1336 .endif
1337
1338 #
1339 # Required install tools to be saved in a scratch dir for safety.
1340 #
1341 .if !defined(CROSSBUILD_HOST)
1342 _sysctl=sysctl
1343 .endif
1344
1345 ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \
1346         date echo egrep find grep id install ${_install-info} \
1347         ln make mkdir mtree mv pwd_mkdb \
1348         rm sed services_mkdb sh sort strip ${_sysctl} test true uname wc
1349
1350 .if ${MK_ZONEINFO} != "no"
1351 ITOOLS+=tzsetup
1352 .endif
1353
1354 # Needed for share/man
1355 .if ${MK_MAN_UTILS} != "no"
1356 ITOOLS+=makewhatis
1357 .endif
1358
1359 ITOOLS+=${LOCAL_ITOOLS}
1360
1361 #
1362 # distributeworld
1363 #
1364 # Distributes everything compiled by a `buildworld'.
1365 #
1366 # installworld
1367 #
1368 # Installs everything compiled by a 'buildworld'.
1369 #
1370
1371 # Non-base distributions produced by the base system
1372 EXTRA_DISTRIBUTIONS=
1373 .if defined(_LIBCOMPAT)
1374 EXTRA_DISTRIBUTIONS+=   lib${libcompat}
1375 .endif
1376 .if ${MK_TESTS} != "no"
1377 EXTRA_DISTRIBUTIONS+=   tests
1378 .endif
1379
1380 DEBUG_DISTRIBUTIONS=
1381 .if ${MK_DEBUG_FILES} != "no"
1382 DEBUG_DISTRIBUTIONS+=   base ${EXTRA_DISTRIBUTIONS:S,tests,,}
1383 .endif
1384
1385 MTREE_MAGIC?=   mtree 2.0
1386
1387 distributeworld installworld stageworld: _installcheck_world .PHONY
1388         mkdir -p ${INSTALLTMP}
1389         progs=$$(for prog in ${ITOOLS}; do \
1390                 if progpath=`env PATH=${TMPPATH} which $$prog`; then \
1391                         echo $$progpath; \
1392                 else \
1393                         echo "Required tool $$prog not found in PATH ("${TMPPATH:Q}")." >&2; \
1394                         exit 1; \
1395                 fi; \
1396             done); \
1397         if [ -z "${CROSSBUILD_HOST}" ] ; then \
1398                 libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | grep -Ev '\[.*]' | \
1399                     while read line; do \
1400                         set -- $$line; \
1401                         if [ "$$2 $$3" != "not found" ]; then \
1402                                 echo $$2; \
1403                         else \
1404                                 echo "Required library $$1 not found." >&2; \
1405                                 exit 1; \
1406                         fi; \
1407                     done); \
1408         fi; \
1409         ${INSTALLTMP_COPY_HOST_TOOL} $$libs $$progs ${INSTALLTMP}
1410         cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
1411 .if defined(NO_ROOT)
1412         -mkdir -p ${METALOG:H}
1413         echo "#${MTREE_MAGIC}" > ${METALOG}
1414 .endif
1415 .if make(distributeworld)
1416 .for dist in ${EXTRA_DISTRIBUTIONS}
1417         -mkdir ${DESTDIR}/${DISTDIR}/${dist}
1418         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1419             -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
1420         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1421             -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
1422         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1423             -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
1424 .if ${MK_DEBUG_FILES} != "no"
1425         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1426             -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
1427 .endif
1428 .if defined(_LIBCOMPAT)
1429         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
1430             -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
1431 .if ${MK_DEBUG_FILES} != "no"
1432         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
1433             -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null
1434 .endif
1435 .endif
1436 .if ${MK_TESTS} != "no" && ${dist} == "tests"
1437         -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
1438         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1439             -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
1440 .if ${MK_DEBUG_FILES} != "no"
1441         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1442             -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null
1443 .endif
1444 .endif
1445 .if defined(NO_ROOT)
1446         ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
1447             sed -e 's#^\./#./${dist}/#' >> ${METALOG}
1448         ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
1449             sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1450         ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
1451             sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
1452 .if defined(_LIBCOMPAT)
1453         ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \
1454             sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1455 .endif
1456 .endif
1457 .endfor
1458         -mkdir ${DESTDIR}/${DISTDIR}/base
1459         ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1460             METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
1461             DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
1462             LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
1463         ${INSTALL_SYMLINK} ${INSTALLFLAGS} usr/src/sys ${INSTALL_DDIR}/base/sys
1464 .endif # make(distributeworld)
1465         ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
1466             ${IMAKEENV} rm -rf ${INSTALLTMP}
1467 .if !make(packageworld) && ${MK_CAROOT} != "no"
1468         @if which openssl>/dev/null; then \
1469                 PATH=${TMPPATH}:${PATH} \
1470                     sh ${SRCTOP}/usr.sbin/certctl/certctl.sh ${CERTCTLFLAGS} rehash; \
1471         else \
1472                 echo "No openssl on the host, not rehashing certificates target -- /etc/ssl may not be populated."; \
1473         fi
1474 .endif
1475 .if make(distributeworld)
1476 .for dist in ${EXTRA_DISTRIBUTIONS}
1477         find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete
1478 .endfor
1479 .if defined(NO_ROOT)
1480 .for dist in base ${EXTRA_DISTRIBUTIONS}
1481         @# For each file that exists in this dist, print the corresponding
1482         @# line from the METALOG.  This relies on the fact that
1483         @# a line containing only the filename will sort immediately before
1484         @# the relevant mtree line.
1485         cd ${DESTDIR}/${DISTDIR}; \
1486         find ./${dist} | sort -u ${METALOG} - | \
1487         awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1488         ${DESTDIR}/${DISTDIR}/${dist}.meta
1489 .endfor
1490 .for dist in ${DEBUG_DISTRIBUTIONS}
1491         @# For each file that exists in this dist, print the corresponding
1492         @# line from the METALOG.  This relies on the fact that
1493         @# a line containing only the filename will sort immediately before
1494         @# the relevant mtree line.
1495         cd ${DESTDIR}/${DISTDIR}; \
1496         find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
1497         awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1498         ${DESTDIR}/${DISTDIR}/${dist}.debug.meta
1499 .endfor
1500 .endif
1501 .endif # make(distributeworld)
1502
1503 packageworld: .PHONY
1504 .for dist in base ${EXTRA_DISTRIBUTIONS}
1505 .if defined(NO_ROOT)
1506         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1507             tar cvf - --exclude usr/lib/debug \
1508             @${DESTDIR}/${DISTDIR}/${dist}.meta | \
1509             ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1510 .else
1511         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1512             tar cvf - --exclude usr/lib/debug . | \
1513             ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1514 .endif
1515 .endfor
1516
1517 .for dist in ${DEBUG_DISTRIBUTIONS}
1518 . if defined(NO_ROOT)
1519         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1520             tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
1521             ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1522 . else
1523         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1524             tar cvLf - usr/lib/debug | \
1525             ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1526 . endif
1527 .endfor
1528
1529 makeman: .PHONY
1530         ${_+_}cd ${.CURDIR}/tools/build/options; sh makeman > \
1531             ${.CURDIR}/share/man/man5/src.conf.5
1532
1533 # We can't assume here that ${TMPPATH} will include ${PATH} or /usr/libexec
1534 # because we may be building with a STRICTTMPPATH, so we explicitly include
1535 # /usr/libexec here for flua.  ${TMPPATH} still usefully includes anything else
1536 # we may need to function.
1537 _sysent_PATH=   ${TMPPATH}:/usr/libexec
1538 _sysent_dirs=   sys/kern
1539 _sysent_dirs+=  sys/compat/freebsd32
1540 _sysent_dirs+=  sys/compat/cloudabi32   \
1541                 sys/compat/cloudabi64
1542 _sysent_dirs+=  sys/amd64/linux         \
1543                 sys/amd64/linux32       \
1544                 sys/arm/linux           \
1545                 sys/arm64/linux         \
1546                 sys/i386/linux
1547
1548 sysent: .PHONY
1549 .for _dir in ${_sysent_dirs}
1550 sysent-${_dir}: .PHONY
1551         @echo "${MAKE} -C ${.CURDIR}/${_dir} sysent"
1552         ${_+_}@env PATH=${_sysent_PATH} ${MAKE} -C ${.CURDIR}/${_dir} sysent
1553
1554 sysent: sysent-${_dir}
1555 .endfor
1556
1557 #
1558 # reinstall
1559 #
1560 # If you have a build server, you can NFS mount the source and obj directories
1561 # and do a 'make reinstall' on the *client* to install new binaries from the
1562 # most recent server build.
1563 #
1564 restage reinstall: .MAKE .PHONY
1565         @echo "--------------------------------------------------------------"
1566         @echo ">>> Making hierarchy"
1567         @echo "--------------------------------------------------------------"
1568         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1569             LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
1570 .if make(restage)
1571         @echo "--------------------------------------------------------------"
1572         @echo ">>> Making distribution"
1573         @echo "--------------------------------------------------------------"
1574         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1575             LOCAL_MTREE=${LOCAL_MTREE:Q} distribution
1576 .endif
1577         @echo
1578         @echo "--------------------------------------------------------------"
1579         @echo ">>> Installing everything started on `LC_ALL=C date`"
1580         @echo "--------------------------------------------------------------"
1581         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
1582 .if defined(_LIBCOMPAT)
1583         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
1584 .endif
1585         @echo "--------------------------------------------------------------"
1586         @echo ">>> Installing everything completed on `LC_ALL=C date`"
1587         @echo "--------------------------------------------------------------"
1588
1589 redistribute: .MAKE .PHONY
1590         @echo "--------------------------------------------------------------"
1591         @echo ">>> Distributing everything"
1592         @echo "--------------------------------------------------------------"
1593         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
1594 .if defined(_LIBCOMPAT)
1595         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \
1596             DISTRIBUTION=lib${libcompat}
1597 .endif
1598
1599 distrib-dirs distribution: .MAKE .PHONY
1600         ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1601             ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1602 .if make(distribution)
1603         ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1604                 ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1605                 METALOG=${METALOG} MK_TESTS=no \
1606                 MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} installconfig
1607 .endif
1608
1609 #
1610 # buildkernel and installkernel
1611 #
1612 # Which kernels to build and/or install is specified by setting
1613 # KERNCONF. If not defined a GENERIC kernel is built/installed.
1614 # Only the existing (depending TARGET) config files are used
1615 # for building kernels and only the first of these is designated
1616 # as the one being installed.
1617 #
1618 # Note that we have to use TARGET instead of TARGET_ARCH when
1619 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
1620 # be set to cross-build, we have to make sure TARGET is set
1621 # properly.
1622
1623 .if defined(KERNFAST)
1624 NO_KERNELCLEAN= t
1625 NO_KERNELCONFIG=        t
1626 NO_KERNELOBJ=           t
1627 # Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1628 .if !defined(KERNCONF) && ${KERNFAST} != "1"
1629 KERNCONF=${KERNFAST}
1630 .endif
1631 .endif
1632 .if ${TARGET_ARCH} == "powerpc64"
1633 KERNCONF?=      GENERIC64
1634 .elif ${TARGET_ARCH} == "powerpc64le"
1635 KERNCONF?=      GENERIC64LE
1636 .elif ${TARGET_ARCH} == "powerpcspe"
1637 KERNCONF?=      MPC85XXSPE
1638 .else
1639 KERNCONF?=      GENERIC
1640 .endif
1641 INSTKERNNAME?=  kernel
1642
1643 KERNSRCDIR?=    ${.CURDIR}/sys
1644 KRNLCONFDIR=    ${KERNSRCDIR}/${TARGET}/conf
1645 KRNLOBJDIR=     ${OBJTOP}${KERNSRCDIR:C,^${.CURDIR},,}
1646 KERNCONFDIR?=   ${KRNLCONFDIR}
1647
1648 BUILDKERNELS=
1649 INSTALLKERNEL=
1650 .if defined(NO_INSTALLKERNEL)
1651 # All of the BUILDKERNELS loops start at index 1.
1652 BUILDKERNELS+= dummy
1653 .endif
1654 .for _kernel in ${KERNCONF}
1655 .if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${_kernel})
1656 BUILDKERNELS+=  ${_kernel}
1657 .if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1658 INSTALLKERNEL= ${_kernel}
1659 .endif
1660 .else
1661 .if make(buildkernel)
1662 .error Missing KERNCONF ${KERNCONFDIR}/${_kernel}
1663 .endif
1664 .endif
1665 .endfor
1666
1667 _cleankernobj_fast_depend_hack: .PHONY
1668 # 20191009  r353340  removal of opensolaris_atomic.S (also r353381)
1669 .if ${MACHINE} != i386
1670 .for f in opensolaris_atomic
1671 .for m in opensolaris zfs
1672         @if [ -e "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o" ] && \
1673             grep -q ${f}.S "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o"; then \
1674                 echo "Removing stale dependencies for opensolaris_atomic"; \
1675                 rm -f ${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.*; \
1676         fi
1677 .endfor
1678 .endfor
1679 .endif
1680
1681 ${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1682
1683 # record kernel(s) build time in seconds
1684 .if make(buildkernel)
1685 _BUILDKERNEL_START!= date '+%s'
1686 .endif
1687
1688 #
1689 # buildkernel
1690 #
1691 # Builds all kernels defined by BUILDKERNELS.
1692 #
1693 buildkernel: .MAKE .PHONY
1694 .if empty(BUILDKERNELS:Ndummy)
1695         @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1696         false
1697 .endif
1698         @echo
1699 .for _kernel in ${BUILDKERNELS:Ndummy}
1700         @echo "--------------------------------------------------------------"
1701         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1702         @echo "--------------------------------------------------------------"
1703         @echo "===> ${_kernel}"
1704         mkdir -p ${KRNLOBJDIR}
1705 .if !defined(NO_KERNELCONFIG)
1706         @echo
1707         @echo "--------------------------------------------------------------"
1708         @echo ">>> stage 1: configuring the kernel"
1709         @echo "--------------------------------------------------------------"
1710         cd ${KRNLCONFDIR}; \
1711                 PATH=${TMPPATH} \
1712                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1713                         -I '${KERNCONFDIR}' -I '${KRNLCONFDIR}' \
1714                         '${KERNCONFDIR}/${_kernel}'
1715 .endif
1716 .if ${MK_CLEAN} == "yes" && !defined(NO_KERNELCLEAN)
1717         @echo
1718         @echo "--------------------------------------------------------------"
1719         @echo ">>> stage 2.1: cleaning up the object tree"
1720         @echo "--------------------------------------------------------------"
1721         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1722 .else
1723         ${_+_}cd ${.CURDIR}; ${WMAKE} _cleankernobj_fast_depend_hack
1724 .endif
1725 .if !defined(NO_KERNELOBJ)
1726         @echo
1727         @echo "--------------------------------------------------------------"
1728         @echo ">>> stage 2.2: rebuilding the object tree"
1729         @echo "--------------------------------------------------------------"
1730         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1731 .endif
1732         @echo
1733         @echo "--------------------------------------------------------------"
1734         @echo ">>> stage 2.3: build tools"
1735         @echo "--------------------------------------------------------------"
1736         ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1737         @echo
1738         @echo "--------------------------------------------------------------"
1739         @echo ">>> stage 3.1: building everything"
1740         @echo "--------------------------------------------------------------"
1741         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1742         @echo "--------------------------------------------------------------"
1743         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1744         @echo "--------------------------------------------------------------"
1745
1746 .endfor
1747         @seconds=$$(($$(date '+%s') - ${_BUILDKERNEL_START})); \
1748           echo -n ">>> Kernel(s) ${BUILDKERNELS} built in $$seconds seconds, "; \
1749           echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}"
1750         @echo "--------------------------------------------------------------"
1751
1752 .if !make(packages) && !make(update-packages)
1753 NO_INSTALLEXTRAKERNELS?=        yes
1754 .else
1755 # packages/update-packages installs kernels to a staging directory then builds
1756 # packages from the result to be installed, typically to other systems.  It is
1757 # less surprising for these targets to honor KERNCONF if multiple kernels are
1758 # specified.
1759 NO_INSTALLEXTRAKERNELS?=        no
1760 .endif
1761
1762 #
1763 # installkernel, etc.
1764 #
1765 # Install the kernel defined by INSTALLKERNEL
1766 #
1767 installkernel installkernel.debug \
1768 reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY
1769 .if !defined(NO_INSTALLKERNEL)
1770 .if empty(INSTALLKERNEL)
1771         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1772         false
1773 .endif
1774         @echo "--------------------------------------------------------------"
1775         @echo ">>> Installing kernel ${INSTALLKERNEL} on $$(LC_ALL=C date)"
1776         @echo "--------------------------------------------------------------"
1777         ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1778             ${CROSSENV} PATH=${TMPPATH} \
1779             ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1780         @echo "--------------------------------------------------------------"
1781         @echo ">>> Installing kernel ${INSTALLKERNEL} completed on $$(LC_ALL=C date)"
1782         @echo "--------------------------------------------------------------"
1783 .endif
1784 .if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1785 .for _kernel in ${BUILDKERNELS:[2..-1]}
1786         @echo "--------------------------------------------------------------"
1787         @echo ">>> Installing kernel ${_kernel} $$(LC_ALL=C date)"
1788         @echo "--------------------------------------------------------------"
1789         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \
1790             ${CROSSENV} PATH=${TMPPATH} \
1791             ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1792         @echo "--------------------------------------------------------------"
1793         @echo ">>> Installing kernel ${_kernel} completed on $$(LC_ALL=C date)"
1794         @echo "--------------------------------------------------------------"
1795 .endfor
1796 .endif
1797
1798 distributekernel distributekernel.debug: .PHONY
1799 .if !defined(NO_INSTALLKERNEL)
1800 .if empty(INSTALLKERNEL)
1801         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1802         false
1803 .endif
1804         mkdir -p ${DESTDIR}/${DISTDIR}
1805 .if defined(NO_ROOT)
1806         @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1807 .endif
1808         ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1809             ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1810             ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1811             DESTDIR=${INSTALL_DDIR}/kernel \
1812             ${.TARGET:S/distributekernel/install/}
1813 .if defined(NO_ROOT)
1814         @sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1815             ${DESTDIR}/${DISTDIR}/kernel.meta
1816 .endif
1817 .endif
1818 .if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1819 .for _kernel in ${BUILDKERNELS:[2..-1]}
1820 .if defined(NO_ROOT)
1821         @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1822 .endif
1823         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \
1824             ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1825             ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1826             KERNEL=${INSTKERNNAME}.${_kernel} \
1827             DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1828             ${.TARGET:S/distributekernel/install/}
1829 .if defined(NO_ROOT)
1830         @sed -e "s|^./kernel.${_kernel}|.|" \
1831             ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1832             ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1833 .endif
1834 .endfor
1835 .endif
1836
1837 packagekernel: .PHONY
1838 .if defined(NO_ROOT)
1839 .if !defined(NO_INSTALLKERNEL)
1840         cd ${DESTDIR}/${DISTDIR}/kernel; \
1841             tar cvf - --exclude '*.debug' \
1842             @${DESTDIR}/${DISTDIR}/kernel.meta | \
1843             ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1844 .endif
1845 .if ${MK_DEBUG_FILES} != "no"
1846         cd ${DESTDIR}/${DISTDIR}/kernel; \
1847             tar cvf - --include '*/*/*.debug' \
1848             @${DESTDIR}/${DISTDIR}/kernel.meta | \
1849             ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1850 .endif
1851 .if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1852 .for _kernel in ${BUILDKERNELS:[2..-1]}
1853         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1854             tar cvf - --exclude '*.debug' \
1855             @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1856             ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1857 .if ${MK_DEBUG_FILES} != "no"
1858         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1859             tar cvf - --include '*/*/*.debug' \
1860             @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1861             ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1862 .endif
1863 .endfor
1864 .endif
1865 .else
1866 .if !defined(NO_INSTALLKERNEL)
1867         cd ${DESTDIR}/${DISTDIR}/kernel; \
1868             tar cvf - --exclude '*.debug' . | \
1869             ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1870 .endif
1871 .if ${MK_DEBUG_FILES} != "no"
1872         cd ${DESTDIR}/${DISTDIR}/kernel; \
1873             tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1874             ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1875 .endif
1876 .if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1877 .for _kernel in ${BUILDKERNELS:[2..-1]}
1878         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1879             tar cvf - --exclude '*.debug' . | \
1880             ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1881 .if ${MK_DEBUG_FILES} != "no"
1882         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1883             tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1884             ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1885 .endif
1886 .endfor
1887 .endif
1888 .endif
1889
1890 stagekernel: .PHONY
1891         ${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel
1892
1893 PORTSDIR?=      /usr/ports
1894 WSTAGEDIR?=     ${OBJTOP}/worldstage
1895 KSTAGEDIR?=     ${OBJTOP}/kernelstage
1896 REPODIR?=       ${OBJROOT}repo
1897 PKG_FORMAT?=    txz
1898 PKG_REPO_SIGNING_KEY?=  # empty
1899 PKG_OUTPUT_DIR?=        ${PKG_VERSION}
1900
1901 .ORDER:         stage-packages create-packages
1902 .ORDER:         create-packages create-world-packages
1903 .ORDER:         create-packages create-kernel-packages
1904 .ORDER:         create-packages sign-packages
1905
1906 _pkgbootstrap: .PHONY
1907 .if make(*package*) && !exists(${LOCALBASE}/sbin/pkg)
1908         @env ASSUME_ALWAYS_YES=YES pkg bootstrap
1909 .endif
1910
1911 .if make(create-world-packages-jobs) || make(create-kernel-packages*) || make(real-update-packages)
1912 PKG_ABI!=${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI
1913 .endif
1914
1915 .if !defined(PKG_VERSION_FROM) && make(real-update-packages)
1916 .if defined(PKG_ABI)
1917 .if exists(${REPODIR}/${PKG_ABI})
1918 PKG_VERSION_FROM!=/usr/bin/readlink ${REPODIR}/${PKG_ABI}/latest
1919 PKG_VERSION_FROM_DIR=   ${REPODIR}/${PKG_ABI}/${PKG_VERSION_FROM}
1920 .else
1921 PKG_VERSION_FROM=
1922 PKG_VERSION_FROM_DIR=
1923 .endif
1924 .endif
1925 .endif
1926
1927 PKGMAKEARGS+=   PKG_VERSION=${PKG_VERSION} \
1928                 NO_INSTALLEXTRAKERNELS=${NO_INSTALLEXTRAKERNELS}
1929
1930 packages: .PHONY
1931         ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-packages
1932
1933 update-packages: .PHONY
1934         ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-update-packages
1935
1936 package-pkg: .PHONY
1937         rm -rf /tmp/ports.${TARGET} || :
1938         env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \
1939                 PKG_CMD=${PKG_CMD} PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} \
1940                 WSTAGEDIR=${WSTAGEDIR} \
1941                 sh ${.CURDIR}/release/scripts/make-pkg-package.sh
1942
1943 real-packages:  stage-packages create-packages sign-packages .PHONY
1944
1945 real-update-packages: stage-packages .PHONY
1946         ${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} create-packages
1947 .if empty(PKG_VERSION_FROM_DIR)
1948         @echo "==> Bootstrapping repository, not checking for new packages"
1949 .else
1950         @echo "==> Checking for new packages (comparing ${PKG_VERSION} to ${PKG_VERSION_FROM})"
1951         @for pkg in ${PKG_VERSION_FROM_DIR}/${PKG_NAME_PREFIX}-*; do \
1952           pkgname=$$(pkg query -F $${pkg} '%n' | sed 's/${PKG_NAME_PREFIX}-\(.*\)/\1/') ; \
1953           newpkgname=${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION}.pkg ; \
1954           oldsum=$$(pkg query -F $${pkg} '%X') ; \
1955           if [ ! -f ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ]; then \
1956             continue; \
1957           fi ; \
1958           newsum=$$(pkg query -F ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} '%X') ; \
1959           if [ "$${oldsum}" == "$${newsum}" ]; then \
1960            echo "==> Keeping old ${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION_FROM}.pkg" ; \
1961            rm ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ; \
1962            cp $${pkg} ${REPODIR}/${PKG_ABI}/${PKG_VERSION} ; \
1963           else \
1964             echo "==> New package $${newpkgname}" ; \
1965           fi ; \
1966         done
1967 .endif
1968         ${_+_}@cd ${.CURDIR}; \
1969                 ${MAKE} -f Makefile.inc1 PKG_VERSION=${PKG_VERSION} sign-packages
1970
1971 stage-packages-world: .PHONY
1972         @mkdir -p ${WSTAGEDIR}
1973         ${_+_}@cd ${.CURDIR}; \
1974                 ${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld
1975
1976 stage-packages-kernel: .PHONY
1977         @mkdir -p ${KSTAGEDIR}
1978         ${_+_}@cd ${.CURDIR}; \
1979                 ${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel
1980
1981 stage-packages: .PHONY stage-packages-world stage-packages-kernel
1982
1983 _repodir: .PHONY
1984         @mkdir -p ${REPODIR}
1985
1986 create-packages-world:  _pkgbootstrap _repodir .PHONY
1987         ${_+_}@cd ${.CURDIR}; \
1988                 ${MAKE} -f Makefile.inc1 \
1989                         DESTDIR=${WSTAGEDIR} \
1990                         PKG_VERSION=${PKG_VERSION} create-world-packages
1991
1992 create-packages-kernel: _pkgbootstrap _repodir .PHONY
1993         ${_+_}@cd ${.CURDIR}; \
1994                 ${MAKE} -f Makefile.inc1 \
1995                         DESTDIR=${KSTAGEDIR} \
1996                         PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \
1997                         SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \
1998                         create-kernel-packages
1999
2000 create-packages: .PHONY create-packages-world create-packages-kernel
2001
2002 create-world-packages:  _pkgbootstrap .PHONY
2003         @rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || :
2004         @cd ${WSTAGEDIR} ; \
2005                 env -i LC_COLLATE=C sort ${WSTAGEDIR}/${DISTDIR}/METALOG | \
2006                 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk
2007         @for plist in ${WSTAGEDIR}/*.plist; do \
2008           plist=$${plist##*/} ; \
2009           pkgname=$${plist%.plist} ; \
2010           echo "_PKGS+= $${pkgname}" ; \
2011         done > ${WSTAGEDIR}/packages.mk
2012         ${_+_}@cd ${.CURDIR}; \
2013                 ${MAKE} -f Makefile.inc1 create-world-packages-jobs \
2014                 SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \
2015                 .MAKE.JOB.PREFIX=
2016
2017 .if make(create-world-packages-jobs)
2018 .include "${WSTAGEDIR}/packages.mk"
2019 .endif
2020
2021 create-world-packages-jobs: .PHONY
2022 .for pkgname in ${_PKGS}
2023 create-world-packages-jobs: create-world-package-${pkgname}
2024 create-world-package-${pkgname}: .PHONY
2025         @sh ${SRCDIR}/release/packages/generate-ucl.sh -o ${pkgname} \
2026                 -s ${SRCDIR} -u ${WSTAGEDIR}/${pkgname}.ucl
2027         @awk -F\" ' \
2028                 /^name/ { printf("===> Creating %s-", $$2); next } \
2029                 /^version/ { print $$2; next } \
2030                 ' ${WSTAGEDIR}/${pkgname}.ucl
2031         @if [ "${pkgname}" == "runtime" ]; then \
2032                 sed -i '' -e "s/%VCS_REVISION%/${VCS_REVISION}/" ${WSTAGEDIR}/${pkgname}.ucl ; \
2033         fi
2034         ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \
2035                 create -f ${PKG_FORMAT} -M ${WSTAGEDIR}/${pkgname}.ucl \
2036                 -p ${WSTAGEDIR}/${pkgname}.plist \
2037                 -r ${WSTAGEDIR} \
2038                 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR}
2039 .endfor
2040
2041 _default_flavor=        -default
2042 .if make(*package*) && exists(${KSTAGEDIR}/kernel.meta)
2043 . if ${MK_DEBUG_FILES} != "no"
2044 _debug=-dbg
2045 . endif
2046 create-kernel-packages: .PHONY
2047 . for flavor in "" ${_debug}
2048 create-kernel-packages: create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}
2049 create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap .PHONY
2050         @cd ${KSTAGEDIR}/${DISTDIR} ; \
2051         env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.meta | \
2052         awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
2053                 -v kernel=yes -v _kernconf=${INSTALLKERNEL} ; \
2054         sed -e "s/%VERSION%/${PKG_VERSION}/" \
2055                 -e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \
2056                 -e "s/%KERNELDIR%/kernel/" \
2057                 -e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
2058                 -e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
2059                 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \
2060                 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \
2061                 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \
2062                 -e "s|%PKG_WWW%|${PKG_WWW}|" \
2063                 ${SRCDIR}/release/packages/kernel.ucl \
2064                 > ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
2065         awk -F\" ' \
2066                 /name/ { printf("===> Creating %s-", $$2); next } \
2067                 /version/ {print $$2; next } ' \
2068                 ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
2069         ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \
2070                 create -f ${PKG_FORMAT} \
2071                 -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \
2072                 -p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \
2073                 -r ${KSTAGEDIR}/${DISTDIR} \
2074                 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR}
2075 . endfor
2076 .endif
2077 .if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
2078 . for _kernel in ${BUILDKERNELS:[2..-1]}
2079 .  if exists(${KSTAGEDIR}/kernel.${_kernel}.meta)
2080 .   if ${MK_DEBUG_FILES} != "no"
2081 _debug=-dbg
2082 .   endif
2083 .   for flavor in "" ${_debug}
2084 create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}
2085 create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}: _pkgbootstrap .PHONY
2086         @cd ${KSTAGEDIR}/kernel.${_kernel} ; \
2087         env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.${_kernel}.meta | \
2088         awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
2089                 -v kernel=yes -v _kernconf=${_kernel} ; \
2090         sed -e "s/%VERSION%/${PKG_VERSION}/" \
2091                 -e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \
2092                 -e "s/%KERNELDIR%/kernel.${_kernel}/" \
2093                 -e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \
2094                 -e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \
2095                 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \
2096                 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \
2097                 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \
2098                 -e "s|%PKG_WWW%|${PKG_WWW}|" \
2099                 ${SRCDIR}/release/packages/kernel.ucl \
2100                 > ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
2101         awk -F\" ' \
2102                 /name/ { printf("===> Creating %s-", $$2); next } \
2103                 /version/ {print $$2; next } ' \
2104                 ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
2105         ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \
2106                 create -f ${PKG_FORMAT} \
2107                 -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \
2108                 -p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \
2109                 -r ${KSTAGEDIR}/kernel.${_kernel} \
2110                 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR}
2111 .   endfor
2112 .  endif
2113 . endfor
2114 .endif
2115
2116 sign-packages:  _pkgbootstrap .PHONY
2117         printf "version = 2;\n" > ${WSTAGEDIR}/meta
2118         @[ -L "${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest" ] && \
2119                 unlink ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest ; \
2120         ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname repo \
2121                 -m ${WSTAGEDIR}/meta \
2122                 -o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \
2123                 ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \
2124                 ${PKG_REPO_SIGNING_KEY} ; \
2125         cd ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI); \
2126         ln -s ${PKG_OUTPUT_DIR} latest
2127
2128 #
2129 #
2130 # checkworld
2131 #
2132 # Run test suite on installed world.
2133 #
2134 checkworld: .PHONY
2135         @if [ ! -x "${LOCALBASE}/bin/kyua" ] && [ ! -x "/usr/bin/kyua" ]; then \
2136                 echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
2137                 exit 1; \
2138         fi
2139         ${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile
2140
2141 #
2142 #
2143 # doxygen
2144 #
2145 # Build the API documentation with doxygen
2146 #
2147 doxygen: .PHONY
2148         @if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \
2149                 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
2150                 exit 1; \
2151         fi
2152         ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
2153
2154 #
2155 # ------------------------------------------------------------------------
2156 #
2157 # From here onwards are utility targets used by the 'make world' and
2158 # related targets.  If your 'world' breaks, you may like to try to fix
2159 # the problem and manually run the following targets to attempt to
2160 # complete the build.  Beware, this is *not* guaranteed to work, you
2161 # need to have a pretty good grip on the current state of the system
2162 # to attempt to manually finish it.  If in doubt, 'make world' again.
2163 #
2164
2165 #
2166 # legacy: Build compatibility shims for the next three targets. This is a
2167 # minimal set of tools and shims necessary to compensate for older systems
2168 # which don't have the APIs required by the targets built in bootstrap-tools,
2169 # build-tools or cross-tools.
2170 #
2171 legacy: .PHONY
2172 .if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0
2173         @echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \
2174         false
2175 .endif
2176
2177 .for _tool in \
2178   tools/build \
2179   ${LOCAL_LEGACY_DIRS}
2180         ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \
2181             cd ${.CURDIR}/${_tool}; \
2182             if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2183             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy includes; \
2184             ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \
2185             ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \
2186                 DESTDIR=${WORLDTMP}/legacy install
2187 .endfor
2188
2189 #
2190 # bootstrap-tools: Build tools needed for compatibility. These are binaries that
2191 # are built to build other binaries in the system. However, the focus of these
2192 # binaries is usually quite narrow. Bootstrap tools use the host's compiler and
2193 # libraries, augmented by -legacy, in addition to the libraries built during
2194 # bootstrap-tools.
2195 #
2196 _bt=            _bootstrap-tools
2197
2198 # We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't
2199 # accidentally run tools that are incompatible but happen to be in $PATH.
2200 # This is especially important when building on Linux/MacOS where many of the
2201 # programs used during the build accept different flags or generate different
2202 # output. On those platforms we only symlink the tools known to be compatible
2203 # (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others
2204 # from the FreeBSD sources during the bootstrap-tools stage.
2205 # We want to build without the user's $PATH starting in the bootstrap-tools
2206 # phase so the tools used in that phase (ln, cp, etc) must have already been
2207 # linked to $WORLDTMP. The tools are listed in the _host_tools_to_symlink
2208 # variable in tools/build/Makefile and are linked during the legacy phase.
2209 # Since they could be Linux or MacOS binaries, too we must only use flags that
2210 # are portable across operating systems.
2211
2212 # If BOOTSTRAP_ALL_TOOLS is set we will build all the required tools from the
2213 # current source tree. Otherwise we create a symlink to the version found in
2214 # $PATH during the bootstrap-tools stage.
2215 # When building on non-FreeBSD systems we can't assume that the host binaries
2216 # accept compatible flags or produce compatible output. Therefore we force
2217 # BOOTSTRAP_ALL_TOOLS and just build the FreeBSD version of the binary.
2218 .if defined(CROSSBUILD_HOST)
2219 BOOTSTRAP_ALL_TOOLS:=   1
2220 .endif
2221 .if defined(BOOTSTRAP_ALL_TOOLS)
2222 # BOOTSTRAPPING will be set on the command line so we can't override it here.
2223 # Instead set BOOTSTRAPPING_OSRELDATE so that the value 0 is set ${BSARGS}
2224 BOOTSTRAPPING_OSRELDATE:=       0
2225 .endif
2226
2227 # libnv and libsbuf are requirements for config(8), which is an unconditional
2228 # bootstrap-tool.
2229 _config=usr.sbin/config lib/libnv lib/libsbuf
2230 ${_bt}-usr.sbin/config: ${_bt}-lib/libnv ${_bt}-lib/libsbuf
2231
2232 .if ${MK_GAMES} != "no"
2233 _strfile=       usr.bin/fortune/strfile
2234 .endif
2235
2236 # vtfontcvt is used to build font files for loader and to generate
2237 # C source for loader built in font (8x16.c).
2238 _vtfontcvt=     usr.bin/vtfontcvt
2239
2240 # zic is used to compile timezone data
2241 .if ${MK_ZONEINFO} != "no"
2242 _zic=           usr.sbin/zic
2243 .endif
2244
2245 # If we are not building the bootstrap because BOOTSTRAPPING is sufficient
2246 # we symlink the host version to $WORLDTMP instead. By doing this we can also
2247 # detect when a bootstrap tool is being used without the required MK_FOO.
2248 # If you add a new bootstrap tool where we could also use the host version,
2249 # please ensure that you also add a .else case where you add the tool to the
2250 # _bootstrap_tools_links variable.
2251 .if ${BOOTSTRAPPING} < 1000033
2252 # Note: lex needs m4 to build but m4 also depends on lex (which needs m4 to
2253 # generate any files). To fix this cyclic dependency we can build a bootstrap
2254 # version of m4 (with pre-generated files) then use that to build the real m4.
2255 # We can't simply use the host m4 since e.g. the macOS version does not accept
2256 # the flags that are passed by lex.
2257 # For lex we also use the pre-gerated files since we would otherwise need to
2258 # build awk and sed first (which need lex to build)
2259 # TODO: add a _bootstrap_lex and then build the real lex afterwards
2260 _lex=           usr.bin/lex
2261 _m4=            tools/build/bootstrap-m4 usr.bin/m4
2262 ${_bt}-tools/build/bootstrap-m4: ${_bt}-usr.bin/lex ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc
2263 ${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc ${_bt}-usr.bin/lex ${_bt}-tools/build/bootstrap-m4
2264 _bt_m4_depend=${_bt}-usr.bin/m4
2265 _bt_lex_depend=${_bt}-usr.bin/lex ${_bt_m4_depend}
2266 .else
2267 _bootstrap_tools_links+=m4 lex
2268 .endif
2269
2270 # ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
2271 # r296685 fix cross-endian objcopy
2272 # r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2.
2273 # r334881 added libdwarf constants used by ctfconvert.
2274 # r338478 fixed a crash in objcopy for mips64el objects
2275 # r339083 libelf: correct mips64el test to use ELF header
2276 # r348347 Add missing powerpc64 relocation support to libdwarf
2277 .if ${BOOTSTRAPPING} < 1300030
2278 _elftoolchain_libs= lib/libelf lib/libdwarf lib/libzstd
2279 ${_bt}-lib/libelf: ${_bt_m4_depend}
2280 ${_bt}-lib/libdwarf: ${_bt_m4_depend}
2281 .endif
2282
2283 # flua is required to regenerate syscall files.  It first appeared during the
2284 # 13.0-CURRENT cycle, thus needs to be built on -older releases and stable
2285 # branches.
2286 .if ${BOOTSTRAPPING} < 1300059
2287 ${_bt}-libexec/flua: ${_bt}-lib/liblua ${_bt}-lib/libucl
2288 _flua= lib/liblua lib/libucl libexec/flua
2289 .endif
2290
2291 # r245440 mtree -N support added
2292 # r313404 requires sha384.h for libnetbsd, added to libmd in r292782
2293 .if ${BOOTSTRAPPING} < 1100093
2294 _nmtree=        lib/libmd \
2295                 lib/libnetbsd \
2296                 usr.sbin/nmtree
2297
2298 ${_bt}-lib/libnetbsd: ${_bt}-lib/libmd
2299 ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
2300 .else
2301 _bootstrap_tools_links+=mtree
2302 .endif
2303
2304 # r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l
2305 .if ${BOOTSTRAPPING} < 1000027
2306 _cat=           bin/cat
2307 .else
2308 _bootstrap_tools_links+=cat
2309 .endif
2310
2311 # r277259 crunchide: Correct 64-bit section header offset
2312 # r281674 crunchide: always include both 32- and 64-bit ELF support
2313 .if ${BOOTSTRAPPING} < 1100078
2314 _crunchide=     usr.sbin/crunch/crunchide
2315 .else
2316 _bootstrap_tools_links+=crunchide
2317 .endif
2318
2319 # 1400052, 1300526, 1203507: Removed -dc from linker invocation
2320 .if ${BOOTSTRAPPING} < 1203507 || \
2321         (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300526) || \
2322         (${BOOTSTRAPPING} > 1400000 && ${BOOTSTRAPPING} < 1400052)
2323 _crunchgen=     usr.sbin/crunch/crunchgen
2324 .else
2325 _bootstrap_tools_links+=crunchgen
2326 .endif
2327
2328 # r296926 -P keymap search path, MFC to stable/10 in r298297
2329 # Note: kbdcontrol can not be bootstrapped on non-FreeBSD systems
2330 .if !defined(CROSSBUILD_HOST)
2331 .if (${BOOTSTRAPPING} < 1003501 || \
2332         (${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103) || \
2333         (!exists(/usr/sbin/kbdcontrol)))
2334 _kbdcontrol=    usr.sbin/kbdcontrol
2335 .else
2336 _bootstrap_tools_links+=kbdcontrol
2337 .endif
2338 .endif
2339
2340 # 1300102: VHDX support
2341 .if ${BOOTSTRAPPING} < 1201520 || \
2342         (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300102)
2343 _mkimg= usr.bin/mkimg
2344 .else
2345 _bootstrap_tools_links+=mkimg
2346 .endif
2347
2348 _yacc=          usr.bin/yacc
2349
2350 .if ${MK_BSNMP} != "no"
2351 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
2352 .endif
2353
2354
2355 # We need to build tblgen when we're building clang or lld, either as
2356 # bootstrap tools, or as the part of the normal build.
2357 # llvm-tblgen is also needed for various llvm binutils (e.g. objcopy).
2358 .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \
2359     ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no" || \
2360     ${MK_LLDB} != "no" || ${MK_LLVM_BINUTILS} != "no"
2361 _clang_tblgen= \
2362         lib/clang/libllvmminimal \
2363         usr.bin/clang/llvm-tblgen
2364 .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \
2365     ${MK_LLDB} != "no"
2366 _clang_tblgen+= lib/clang/libclangminimal
2367 _clang_tblgen+= usr.bin/clang/clang-tblgen
2368 .endif
2369 .if ${MK_LLDB} != "no"
2370 _clang_tblgen+= usr.bin/clang/lldb-tblgen
2371 .endif
2372 ${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal
2373 ${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal
2374 ${_bt}-usr.bin/clang/lldb-tblgen: ${_bt}-lib/clang/libllvmminimal
2375 .endif
2376
2377 .if ${MK_LOCALES} != "no"
2378 _localedef=     usr.bin/localedef
2379 ${_bt}-usr.bin/localedef: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2380 .endif
2381
2382 .if ${MK_ICONV} != "no"
2383 _mkesdb=        usr.bin/mkesdb
2384 _mkcsmapper=    usr.bin/mkcsmapper
2385 ${_bt}-usr.bin/mkesdb: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2386 ${_bt}-usr.bin/mkcsmapper: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2387 .endif
2388
2389 .if ${MK_KERBEROS} != "no"
2390 _kerberos5_bootstrap_tools= \
2391         kerberos5/tools/make-roken \
2392         kerberos5/lib/libroken \
2393         kerberos5/lib/libvers \
2394         kerberos5/tools/asn1_compile \
2395         kerberos5/tools/slc \
2396         usr.bin/compile_et
2397
2398 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
2399 .for _tool in ${_kerberos5_bootstrap_tools}
2400 ${_bt}-${_tool}: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2401 .endfor
2402 .endif
2403
2404 ${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd
2405
2406 # The tools listed in _basic_bootstrap_tools will generally not be
2407 # bootstrapped unless BOOTSTRAP_ALL_TOOL is set. However, when building on a
2408 # Linux or MacOS host the host versions are incompatible so we need to build
2409 # them from the source tree. Usually the link name will be the same as the subdir,
2410 # but some directories such as grep or test install multiple binaries. In that
2411 # case we use the _basic_bootstrap_tools_multilink variable which is a list of
2412 # subdirectory and comma-separated list of files.
2413 _basic_bootstrap_tools_multilink=usr.bin/grep grep,egrep,fgrep
2414 _basic_bootstrap_tools_multilink+=bin/test test,[
2415 # bootstrap tools needed by buildworld:
2416 _basic_bootstrap_tools+=usr.bin/cut bin/expr usr.bin/gencat usr.bin/join \
2417     usr.bin/mktemp bin/realpath bin/rmdir usr.bin/sed usr.bin/sort \
2418     usr.bin/truncate usr.bin/tsort
2419 # Some build scripts use nawk instead of awk (this happens at least in
2420 # cddl/contrib/opensolaris/lib/libdtrace/common/mknames.sh) so we need both awk
2421 # and nawk in ${WORLDTMP}/legacy/bin.
2422 _basic_bootstrap_tools_multilink+=usr.bin/awk awk,nawk
2423 # file2c is required for building usr.sbin/config:
2424 _basic_bootstrap_tools+=usr.bin/file2c
2425 # uuencode/uudecode required for share/tabset
2426 _basic_bootstrap_tools+=usr.bin/uuencode usr.bin/uudecode
2427 # xargs is required by mkioctls
2428 _basic_bootstrap_tools+=usr.bin/xargs
2429 # cap_mkdb is required for share/termcap:
2430 _basic_bootstrap_tools+=usr.bin/cap_mkdb
2431 # services_mkdb/pwd_mkdb are required for installworld:
2432 _basic_bootstrap_tools+=usr.sbin/services_mkdb usr.sbin/pwd_mkdb
2433 # ldd is required for installcheck (TODO: just always use /usr/bin/ldd instead?)
2434 .if !defined(CROSSBUILD_HOST)
2435 # ldd is only needed for updating the running system so we don't need to
2436 # bootstrap ldd on non-FreeBSD systems
2437 _basic_bootstrap_tools+=usr.bin/ldd
2438 .endif
2439 # sysctl/chflags are required for installkernel:
2440 .if !defined(CROSSBUILD_HOST)
2441 _basic_bootstrap_tools+=bin/chflags
2442 # Note: sysctl does not bootstrap on FreeBSD < 13 anymore, but that doesn't
2443 # matter since we don't need any of the new features for the build.
2444 _bootstrap_tools_links+=sysctl
2445 .else
2446 # When building on non-FreeBSD, install a fake chflags instead since the
2447 # version from the source tree cannot work. We also don't need sysctl since we
2448 # are install with -DNO_ROOT.
2449 _other_bootstrap_tools+=tools/build/cross-build/fake_chflags
2450 .endif
2451 # mkfifo is used by sys/conf/newvers.sh
2452 _basic_bootstrap_tools+=usr.bin/mkfifo
2453 # jot is needed for the mkimg tests
2454 _basic_bootstrap_tools+=usr.bin/jot
2455
2456 .if ${MK_BOOT} != "no"
2457 # md5 is used by boot/beri (and possibly others)
2458 _basic_bootstrap_tools+=sbin/md5
2459 .endif
2460
2461 # tzsetup is needed as an install tool
2462 .if ${MK_ZONEINFO} != "no"
2463 _basic_bootstrap_tools+=usr.sbin/tzsetup
2464 .endif
2465
2466 .if defined(BOOTSTRAP_ALL_TOOLS)
2467 _other_bootstrap_tools+=${_basic_bootstrap_tools}
2468 .for _subdir _links in ${_basic_bootstrap_tools_multilink}
2469 _other_bootstrap_tools+=${_subdir}
2470 .endfor
2471 ${_bt}-usr.bin/awk: ${_bt_lex_depend} ${_bt}-usr.bin/yacc
2472 ${_bt}-bin/expr: ${_bt_lex_depend} ${_bt}-usr.bin/yacc
2473 # If we are bootstrapping file2c, we have to build it before config:
2474 ${_bt}-usr.sbin/config: ${_bt}-usr.bin/file2c ${_bt_lex_depend}
2475 # Note: no symlink to make/bmake in the !BOOTSTRAP_ALL_TOOLS case here since
2476 # the links to make/bmake make links will have already have been created in the
2477 # `make legacy` step. Not adding a link to make is important on non-FreeBSD
2478 # since "make" will usually point to GNU make there.
2479 _other_bootstrap_tools+=usr.bin/bmake
2480
2481 # Avoid dependency on host bz2 headers:
2482 _other_bootstrap_tools+=lib/libbz2
2483 ${_bt}-usr.bin/grep: ${_bt}-lib/libbz2
2484
2485 # libdwarf depends on libz
2486 _other_bootstrap_tools+=lib/libz
2487 ${_bt}-lib/libdwarf: ${_bt}-lib/libz
2488
2489 # libroken depends on libcrypt
2490 _other_bootstrap_tools+=lib/libcrypt
2491 ${_bt}-lib/libroken: ${_bt}-lib/libcrypt
2492 .else
2493 # All tools in _basic_bootstrap_tools have the same name as the subdirectory
2494 # so we can use :T to get the name of the symlinks that we need to create.
2495 _bootstrap_tools_links+=${_basic_bootstrap_tools:T}
2496 .for _subdir _links in ${_basic_bootstrap_tools_multilink}
2497 _bootstrap_tools_links+=${_links:S/,/ /g}
2498 .endfor
2499 .endif  # defined(BOOTSTRAP_ALL_TOOLS)
2500
2501 # Link the tools that we need for building but don't need to bootstrap because
2502 # the host version is known to be compatible into ${WORLDTMP}/legacy
2503 # We do this before building any of the bootstrap tools in case they depend on
2504 # the presence of any of the links (e.g. as m4/lex/awk)
2505 ${_bt}-links: .PHONY
2506
2507 .for _tool in ${_bootstrap_tools_links}
2508 ${_bt}-link-${_tool}: .PHONY .MAKE
2509         @rm -f "${WORLDTMP}/legacy/bin/${_tool}"; \
2510         source_path=`which ${_tool}`; \
2511         if [ ! -e "$${source_path}" ] ; then \
2512                 echo "Cannot find host tool '${_tool}'"; false; \
2513         fi; \
2514         cp -pf "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}"
2515 ${_bt}-links: ${_bt}-link-${_tool}
2516 .endfor
2517
2518 bootstrap-tools: ${_bt}-links .PHONY
2519
2520 #       Please document (add comment) why something is in 'bootstrap-tools'.
2521 #       Try to bound the building of the bootstrap-tool to just the
2522 #       FreeBSD versions that need the tool built at this stage of the build.
2523 .for _tool in \
2524     ${_clang_tblgen} \
2525     ${_kerberos5_bootstrap_tools} \
2526     ${_strfile} \
2527     usr.bin/dtc \
2528     ${_cat} \
2529     ${_kbdcontrol} \
2530     ${_elftoolchain_libs} \
2531     lib/libopenbsd \
2532     usr.bin/mandoc \
2533     usr.bin/rpcgen \
2534     ${_yacc} \
2535     ${_m4} \
2536     ${_lex} \
2537     ${_other_bootstrap_tools} \
2538     usr.bin/xinstall \
2539     ${_gensnmptree} \
2540     ${_config} \
2541     ${_flua} \
2542     ${_crunchide} \
2543     ${_crunchgen} \
2544     ${_mkimg} \
2545     ${_nmtree} \
2546     ${_vtfontcvt} \
2547     ${_localedef} \
2548     ${_mkcsmapper} \
2549     ${_mkesdb} \
2550     ${_zic} \
2551     ${LOCAL_BSTOOL_DIRS}
2552 ${_bt}-${_tool}: ${_bt}-links .PHONY .MAKE
2553         ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2554                 cd ${.CURDIR}/${_tool}; \
2555                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2556                 if [ "${_tool}" = "usr.bin/lex" ]; then \
2557                         ${MAKE} DIRPRFX=${_tool}/ bootstrap; \
2558                 fi; \
2559                 ${MAKE} DIRPRFX=${_tool}/ all; \
2560                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install
2561
2562 bootstrap-tools: ${_bt}-${_tool}
2563 .endfor
2564 .if target(${_bt}-lib/libmd)
2565 # If we are bootstrapping libmd (e.g. when building on macOS/Linux) add the
2566 # necessary dependencies:
2567 ${_bt}-usr.bin/sort: ${_bt}-lib/libmd
2568 ${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd
2569 ${_bt}-sbin/md5: ${_bt}-lib/libmd
2570 .endif
2571
2572
2573 #
2574 # build-tools: Build special purpose build tools
2575 #
2576 .if !defined(NO_SHARE) && ${MK_SYSCONS} != "no"
2577 _share= share/syscons/scrnmaps
2578 .endif
2579
2580 .if ${MK_RESCUE} != "no"
2581 # rescue includes programs that have build-tools targets
2582 _rescue=rescue/rescue
2583 .endif
2584
2585 .if ${MK_TCSH} != "no"
2586 _tcsh=bin/csh
2587 .endif
2588 .if ${MK_FILE} != "no"
2589 _libmagic=lib/libmagic
2590 .endif
2591
2592 .if ${MK_PMC} != "no"
2593 _jevents=lib/libpmc/pmu-events
2594 .endif
2595
2596 # kernel-toolchain skips _cleanobj, so handle cleaning up previous
2597 # build-tools directories if needed.
2598 .if ${MK_CLEAN} == "yes" && make(kernel-toolchain)
2599 _bt_clean=      ${CLEANDIR}
2600 .endif
2601
2602 .for _tool in \
2603     ${_tcsh} \
2604     bin/sh \
2605     ${LOCAL_TOOL_DIRS} \
2606     ${_jevents} \
2607     lib/ncurses/ncurses \
2608     ${_rescue} \
2609     ${_share} \
2610     usr.bin/awk \
2611     ${_libmagic} \
2612     usr.bin/vi/catalog
2613 build-tools_${_tool}: .PHONY
2614         ${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \
2615                 cd ${.CURDIR}/${_tool}; \
2616                 if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \
2617                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2618                 ${MAKE} DIRPRFX=${_tool}/ build-tools
2619 build-tools: build-tools_${_tool}
2620 .endfor
2621
2622 #
2623 # kernel-tools: Build kernel-building tools
2624 #
2625 kernel-tools: .PHONY
2626         mkdir -p ${WORLDTMP}/usr
2627         ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2628             -p ${WORLDTMP}/usr >/dev/null
2629
2630 #
2631 # cross-tools: All the tools needed to build the rest of the system after
2632 # we get done with the earlier stages. It is the last set of tools needed
2633 # to begin building the target binaries.
2634 #
2635 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BUILD_WITH_STRICT_TMPPATH} != 0
2636 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
2637 _btxld=         usr.sbin/btxld
2638 .endif
2639 .endif
2640
2641 # Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
2642 # resulting from missing bug fixes or ELF Toolchain updates.
2643 .if ${MK_CDDL} != "no"
2644 _dtrace_tools= cddl/lib/libctf cddl/lib/libspl cddl/usr.bin/ctfconvert \
2645     cddl/usr.bin/ctfmerge
2646 .endif
2647
2648 # If we're given an XAS, don't build binutils.
2649 .if ${XAS:M/*} == ""
2650 .if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2651 _elftctools=    lib/libelftc \
2652                 lib/libpe \
2653                 usr.bin/elfctl \
2654                 usr.bin/elfdump \
2655                 usr.bin/objcopy \
2656                 usr.bin/nm \
2657                 usr.bin/size \
2658                 usr.bin/strings
2659 # These are not required by the build, but can be useful for developers who
2660 # cross-build on a FreeBSD 10 host:
2661 _elftctools+=   usr.bin/addr2line
2662 .endif
2663 .elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2664 # If cross-building with an external binutils we still need to build strip for
2665 # the target (for at least crunchide).
2666 _elftctools=    lib/libelftc \
2667                 lib/libpe \
2668                 usr.bin/elfctl \
2669                 usr.bin/elfdump \
2670                 usr.bin/objcopy
2671 .endif
2672
2673 .if ${MK_CLANG_BOOTSTRAP} != "no"
2674 _clang=         usr.bin/clang
2675 .endif
2676 .if ${MK_LLD_BOOTSTRAP} != "no"
2677 _lld=           usr.bin/clang/lld
2678 .endif
2679 .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no"
2680 _clang_libs=    lib/clang
2681 .endif
2682 .if ${MK_USB} != "no"
2683 _usb_tools=     stand/usb/tools
2684 .endif
2685
2686 .if ${BUILD_WITH_STRICT_TMPPATH} != 0 || defined(BOOTSTRAP_ALL_TOOLS)
2687 _ar=usr.bin/ar
2688 .endif
2689
2690 cross-tools: .MAKE .PHONY
2691 .for _tool in \
2692     ${LOCAL_XTOOL_DIRS} \
2693     ${_ar} \
2694     ${_clang_libs} \
2695     ${_clang} \
2696     ${_lld} \
2697     ${_elftctools} \
2698     ${_dtrace_tools} \
2699     ${_btxld} \
2700     ${_usb_tools}
2701         ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2702                 cd ${.CURDIR}/${_tool}; \
2703                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2704                 ${MAKE} DIRPRFX=${_tool}/ all; \
2705                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install
2706 .endfor
2707
2708 #
2709 # native-xtools is the current target for qemu-user cross builds of ports
2710 # via poudriere and the imgact_binmisc kernel module.
2711 # This target merely builds a toolchan/sysroot, then builds the tools it wants
2712 # with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain
2713 # already built.  It then installs the static tools to NXBDESTDIR for Poudriere
2714 # to pickup.
2715 #
2716 NXBOBJROOT=     ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/
2717 NXBOBJTOP=      ${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH}
2718 NXTP?=          /nxb-bin
2719 .if ${NXTP:N/*}
2720 .error NXTP variable should be an absolute path
2721 .endif
2722 NXBDESTDIR?=    ${DESTDIR}${NXTP}
2723
2724 # This is the list of tools to be built/installed as static and where
2725 # appropriate to build for the given TARGET.TARGET_ARCH.
2726 NXBDIRS+= \
2727     bin/cat \
2728     bin/chmod \
2729     bin/cp \
2730     ${_tcsh} \
2731     bin/echo \
2732     bin/expr \
2733     bin/hostname \
2734     bin/ln \
2735     bin/ls \
2736     bin/mkdir \
2737     bin/mv \
2738     bin/ps \
2739     bin/realpath \
2740     bin/rm \
2741     bin/rmdir \
2742     bin/sh \
2743     bin/sleep \
2744     sbin/md5 \
2745     sbin/sysctl \
2746     usr.bin/addr2line \
2747     usr.bin/ar \
2748     usr.bin/awk \
2749     usr.bin/basename \
2750     usr.bin/bmake \
2751     usr.bin/bzip2 \
2752     usr.bin/cmp \
2753     usr.bin/diff \
2754     usr.bin/dirname \
2755     usr.bin/objcopy \
2756     usr.bin/env \
2757     usr.bin/fetch \
2758     usr.bin/find \
2759     usr.bin/grep \
2760     usr.bin/gzip \
2761     usr.bin/head \
2762     usr.bin/id \
2763     usr.bin/lex \
2764     usr.bin/limits \
2765     usr.bin/mandoc \
2766     usr.bin/mktemp \
2767     usr.bin/mt \
2768     usr.bin/nm \
2769     usr.bin/patch \
2770     usr.bin/readelf \
2771     usr.bin/sed \
2772     usr.bin/size \
2773     usr.bin/sort \
2774     usr.bin/strings \
2775     usr.bin/tar \
2776     usr.bin/touch \
2777     usr.bin/tr \
2778     usr.bin/true \
2779     usr.bin/uniq \
2780     usr.bin/unzip \
2781     usr.bin/wc \
2782     usr.bin/xargs \
2783     usr.bin/xinstall \
2784     usr.bin/xz \
2785     usr.bin/yacc \
2786     usr.sbin/chown
2787
2788 SUBDIR_DEPEND_usr.bin/clang=    lib/clang
2789 .if ${MK_CLANG} != "no"
2790 NXBDIRS+=       lib/clang
2791 NXBDIRS+=       usr.bin/clang
2792 .endif
2793 # XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs
2794 # to be evaluated after NXBDIRS is set.
2795 .if make(install) && !empty(SUBDIR_OVERRIDE)
2796 SUBDIR= ${SUBDIR_OVERRIDE}
2797 .endif
2798
2799 NXBMAKEARGS+= \
2800         OBJTOP=${NXBOBJTOP:Q} \
2801         OBJROOT=${NXBOBJROOT:Q} \
2802         -DNO_SHARED \
2803         -DNO_CPU_CFLAGS \
2804         -DNO_PIC \
2805         MK_CASPER=no \
2806         MK_CLANG_EXTRAS=no \
2807         MK_CLANG_FORMAT=no \
2808         MK_CLANG_FULL=no \
2809         MK_CTF=no \
2810         MK_DEBUG_FILES=no \
2811         MK_HTML=no \
2812         MK_LLDB=no \
2813         MK_MAN=no \
2814         MK_MAN_UTILS=yes \
2815         MK_OFED=no \
2816         MK_OPENSSH=no \
2817         MK_PROFILE=no \
2818         MK_RETPOLINE=no \
2819         MK_SENDMAIL=no \
2820         MK_SVNLITE=no \
2821         MK_SSP=no \
2822         MK_TESTS=no \
2823         MK_WERROR=no \
2824         MK_ZFS=no
2825
2826 NXBMAKEENV+= \
2827         MAKEOBJDIRPREFIX=
2828
2829 # This should match all of the knobs in lib/Makefile that it takes to avoid
2830 # descending into lib/clang!
2831 NXBTNOTOOLS=    MK_CLANG=no MK_LLD=no MK_LLDB=no MK_LLVM_BINUTILS=no
2832
2833 .if make(native-xtools*) && \
2834     (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH))
2835 .error Missing NXB_TARGET / NXB_TARGET_ARCH
2836 .endif
2837 # For 'toolchain' we want to produce native binaries that themselves generate
2838 # native binaries.
2839 NXBTMAKE=       ${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \
2840                 TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH}
2841 # For 'everything' we want to produce native binaries (hence -target to
2842 # be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries.
2843 # TARGET/TARGET_ARCH are still passed along from user.
2844 #
2845 # Use the toolchain we create as an external toolchain.
2846 .if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*}
2847 NXBMAKE+=       XCC="${XCC}" \
2848                 XCXX="${XCXX}" \
2849                 XCPP="${XCPP}"
2850 .else
2851 NXBMAKE+=       XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \
2852                 XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \
2853                 XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp"
2854 .endif
2855 NXBMAKE+=       ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \
2856                 MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \
2857                 TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \
2858                 TARGET_TRIPLE=${MACHINE_TRIPLE:Q}
2859 # NXBDIRS is improperly based on MACHINE rather than NXB_TARGET.  Need to
2860 # invoke a sub-make to reevaluate MK_CLANG, etc, for NXBDIRS.
2861 NXBMAKE+=       SUBDIR_OVERRIDE='$${NXBDIRS:M*}'
2862 # Need to avoid the -isystem logic when using clang as an external toolchain
2863 # even if the TARGET being built for wants GCC.
2864 NXBMAKE+=       WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}'
2865 native-xtools: .PHONY
2866         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj
2867         # Build the bootstrap/host/cross tools that produce native binaries
2868         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain
2869         # Populate includes/libraries sysroot that produce native binaries.
2870         # This is split out from 'toolchain' above mostly so that target LLVM
2871         # libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without
2872         # polluting the cross-compiler build.  The LLVM libs are skipped
2873         # here to avoid the problem but are kept in 'toolchain' so that
2874         # needed build tools are built.
2875         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes ${NXBTNOTOOLS}
2876         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries ${NXBTNOTOOLS}
2877 .if !defined(NO_OBJWALK)
2878         ${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj
2879 .endif
2880         ${_+_}cd ${.CURDIR}; ${NXBMAKE} everything
2881         @echo ">> native-xtools done.  Use 'make native-xtools-install' to install to a given DESTDIR"
2882
2883 native-xtools-install: .PHONY
2884         mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
2885         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2886             -p ${NXBDESTDIR}/usr >/dev/null
2887         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2888             -p ${NXBDESTDIR}/usr/include >/dev/null
2889         ${_+_}cd ${.CURDIR}; ${NXBMAKE} \
2890             DESTDIR=${NXBDESTDIR} \
2891             -DNO_ROOT \
2892             install
2893
2894 #
2895 # hierarchy - ensure that all the needed directories are present
2896 #
2897 hierarchy hier: .MAKE .PHONY
2898         ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
2899
2900 #
2901 # libraries - build all libraries, and install them under ${DESTDIR}.
2902 #
2903 # The list of libraries with dependents (${_prebuild_libs}) and their
2904 # interdependencies (__L) are built automatically by the
2905 # ${.CURDIR}/tools/make_libdeps.sh script.
2906 #
2907 libraries: .MAKE .PHONY
2908         ${_+_}cd ${.CURDIR}; \
2909             ${MAKE} -f Makefile.inc1 _prereq_libs; \
2910             ${MAKE} -f Makefile.inc1 _startup_libs; \
2911             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
2912             ${MAKE} -f Makefile.inc1 _generic_libs
2913
2914 #
2915 # static libgcc.a prerequisite for shared libc
2916 #
2917 _prereq_libs= lib/libcompiler_rt
2918 .if ${MK_SSP} != "no"
2919 _prereq_libs+= lib/libssp_nonshared
2920 .endif
2921
2922 # These dependencies are not automatically generated:
2923 #
2924 # lib/csu and lib/libc must be built before
2925 # all shared libraries for ELF.
2926 #
2927 _startup_libs=  lib/csu
2928 _startup_libs+= lib/libc
2929 _startup_libs+= lib/libc_nonshared
2930 .if ${MK_CXX} != "no"
2931 _startup_libs+= lib/libcxxrt
2932 .endif
2933
2934 _prereq_libs+=  lib/libgcc_eh lib/libgcc_s
2935 _startup_libs+= lib/libgcc_eh lib/libgcc_s
2936
2937 lib/libgcc_s__L: lib/libc__L
2938 lib/libgcc_s__L: lib/libc_nonshared__L
2939 .if ${MK_CXX} != "no"
2940 lib/libcxxrt__L: lib/libgcc_s__L
2941 .endif
2942
2943 _prebuild_libs= ${_kerberos5_lib_libasn1} \
2944                 ${_kerberos5_lib_libhdb} \
2945                 ${_kerberos5_lib_libheimbase} \
2946                 ${_kerberos5_lib_libheimntlm} \
2947                 ${_libsqlite3} \
2948                 ${_kerberos5_lib_libheimipcc} \
2949                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
2950                 ${_kerberos5_lib_libroken} \
2951                 ${_kerberos5_lib_libwind} \
2952                 lib/libbz2 ${_libcom_err} lib/libcrypt \
2953                 lib/libelf lib/libexpat \
2954                 lib/libfigpar \
2955                 ${_lib_libgssapi} \
2956                 lib/libjail \
2957                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
2958                 lib/libzstd \
2959                 ${_lib_casper} \
2960                 lib/ncurses/ncurses \
2961                 lib/libopie lib/libpam/libpam lib/libthr \
2962                 ${_lib_libradius} lib/libsbuf lib/libtacplus \
2963                 lib/libgeom \
2964                 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
2965                 ${_cddl_lib_libuutil} \
2966                 ${_cddl_lib_libavl} \
2967                 ${_cddl_lib_libicp} \
2968                 ${_cddl_lib_libicp_rescue} \
2969                 ${_cddl_lib_libspl} \
2970                 ${_cddl_lib_libtpool} \
2971                 ${_cddl_lib_libzfs_core} ${_cddl_lib_libzfs} \
2972                 ${_cddl_lib_libzutil} \
2973                 ${_cddl_lib_libctf} ${_cddl_lib_libzfsbootenv} \
2974                 lib/libufs \
2975                 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
2976                 ${_secure_lib_libcrypto} ${_secure_lib_libssl} \
2977                 ${_lib_libldns} ${_secure_lib_libssh}
2978
2979 .if ${MK_DIALOG} != "no"
2980 _prebuild_libs+= gnu/lib/libdialog
2981 gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncurses__L
2982 .endif
2983
2984 .if ${MK_GOOGLETEST} != "no"
2985 _prebuild_libs+= lib/libregex
2986 .endif
2987
2988 .if ${MK_CXX} != "no"
2989 _prebuild_libs+= lib/libc++
2990 .endif
2991
2992 lib/libgeom__L: lib/libexpat__L lib/libsbuf__L
2993 lib/libkvm__L: lib/libelf__L
2994
2995 .if ${MK_RADIUS_SUPPORT} != "no"
2996 _lib_libradius= lib/libradius
2997 .endif
2998
2999 .if ${MK_OFED} != "no"
3000 _prebuild_libs+= \
3001         lib/ofed/libibverbs \
3002         lib/ofed/libibmad \
3003         lib/ofed/libibumad \
3004         lib/ofed/complib \
3005         lib/ofed/libmlx5
3006
3007 lib/ofed/libibmad__L:   lib/ofed/libibumad__L
3008 lib/ofed/complib__L:    lib/libthr__L
3009 lib/ofed/libmlx5__L:    lib/ofed/libibverbs__L lib/libthr__L
3010 .endif
3011
3012 .if ${MK_CASPER} != "no"
3013 _lib_casper=    lib/libcasper
3014 .endif
3015
3016 lib/libpjdlog__L: lib/libutil__L
3017 lib/libcasper__L: lib/libnv__L
3018 lib/liblzma__L: lib/libmd__L lib/libthr__L
3019 lib/libzstd__L: lib/libthr__L
3020
3021 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib}
3022 .if ${MK_IPFILTER} != "no"
3023 _generic_libs+= sbin/ipf/libipf
3024 .endif
3025 .for _DIR in ${LOCAL_LIB_DIRS}
3026 .if ${_DIR} == ".WAIT"  || (empty(_generic_libs:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile))
3027 _generic_libs+= ${_DIR}
3028 .endif
3029 .endfor
3030
3031 lib/libopie__L lib/libtacplus__L: lib/libmd__L
3032
3033 .if ${MK_CDDL} != "no"
3034 _cddl_lib_libumem= cddl/lib/libumem
3035 _cddl_lib_libnvpair= cddl/lib/libnvpair
3036 _cddl_lib_libavl= cddl/lib/libavl
3037 _cddl_lib_libuutil= cddl/lib/libuutil
3038 _cddl_lib_libspl= cddl/lib/libspl
3039
3040 cddl/lib/libavl__L: cddl/lib/libspl__L
3041 cddl/lib/libnvpair__L: cddl/lib/libspl__L
3042 cddl/lib/libuutil__L: cddl/lib/libavl__L cddl/lib/libspl__L
3043
3044 .if ${MK_ZFS} != "no"
3045 _cddl_lib_libicp= cddl/lib/libicp
3046 _cddl_lib_libicp_rescue= cddl/lib/libicp_rescue
3047 _cddl_lib_libtpool= cddl/lib/libtpool
3048 _cddl_lib_libzutil= cddl/lib/libzutil
3049 _cddl_lib_libzfs_core= cddl/lib/libzfs_core
3050 _cddl_lib_libzfs= cddl/lib/libzfs
3051 _cddl_lib_libzfsbootenv= cddl/lib/libzfsbootenv
3052
3053 cddl/lib/libtpool__L: cddl/lib/libspl__L
3054
3055 cddl/lib/libzutil__L: cddl/lib/libavl__L lib/libgeom__L lib/msun__L cddl/lib/libtpool__L
3056
3057 cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L cddl/lib/libspl__L cddl/lib/libzutil__L
3058
3059 cddl/lib/libzfs__L: cddl/lib/libzfs_core__L lib/msun__L lib/libutil__L
3060 cddl/lib/libzfs__L: lib/libthr__L lib/libmd__L lib/libz__L cddl/lib/libumem__L
3061 cddl/lib/libzfs__L: cddl/lib/libuutil__L cddl/lib/libavl__L lib/libgeom__L
3062 cddl/lib/libzfs__L: cddl/lib/libnvpair__L cddl/lib/libzutil__L
3063 cddl/lib/libzfs__L: secure/lib/libcrypto__L
3064
3065 cddl/lib/libzfsbootenv__L: cddl/lib/libzfs__L
3066 lib/libbe__L: cddl/lib/libzfs__L cddl/lib/libzfsbootenv__L
3067 .endif
3068 _cddl_lib_libctf= cddl/lib/libctf
3069 _cddl_lib= cddl/lib
3070 cddl/lib/libctf__L: lib/libz__L cddl/lib/libspl__L
3071 .endif
3072 # cddl/lib/libdtrace requires lib/libproc and lib/librtld_db
3073 _prebuild_libs+=        lib/libprocstat lib/libproc lib/librtld_db
3074 lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L
3075 lib/libproc__L: lib/libprocstat__L
3076 lib/librtld_db__L: lib/libprocstat__L
3077
3078 .if ${MK_CRYPT} != "no"
3079 .if ${MK_OPENSSL} != "no"
3080 _secure_lib_libcrypto= secure/lib/libcrypto
3081 _secure_lib_libssl= secure/lib/libssl
3082 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
3083 secure/lib/libcrypto__L: lib/libthr__L
3084 .if ${MK_LDNS} != "no"
3085 _lib_libldns= lib/libldns
3086 lib/libldns__L: secure/lib/libssl__L
3087 .endif
3088 .if ${MK_OPENSSH} != "no"
3089 _secure_lib_libssh= secure/lib/libssh
3090 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
3091 .if ${MK_LDNS} != "no"
3092 secure/lib/libssh__L: lib/libldns__L
3093 .endif
3094 .if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no"
3095 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
3096     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
3097     lib/libmd__L kerberos5/lib/libroken__L
3098 .endif
3099 .endif
3100 .endif
3101 _secure_lib=    secure/lib
3102 .endif
3103
3104 .if ${MK_KERBEROS} != "no"
3105 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
3106 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
3107     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
3108     kerberos5/lib/libwind__L lib/libsqlite3__L
3109 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
3110     kerberos5/lib/libroken__L lib/libcom_err__L
3111 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
3112     secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
3113 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
3114     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
3115     kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
3116     kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
3117 kerberos5/lib/libroken__L: lib/libcrypt__L
3118 kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
3119 kerberos5/lib/libheimbase__L: lib/libthr__L
3120 kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
3121 .endif
3122
3123 lib/libsqlite3__L: lib/libthr__L
3124
3125 .if ${MK_GSSAPI} != "no"
3126 _lib_libgssapi= lib/libgssapi
3127 .endif
3128
3129 .if ${MK_KERBEROS} != "no"
3130 _kerberos5_lib= kerberos5/lib
3131 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
3132 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
3133 _kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
3134 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
3135 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
3136 _kerberos5_lib_libroken= kerberos5/lib/libroken
3137 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
3138 _libsqlite3= lib/libsqlite3
3139 _kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
3140 _kerberos5_lib_libwind= kerberos5/lib/libwind
3141 _libcom_err= lib/libcom_err
3142 .endif
3143
3144 .if ${MK_NIS} != "no"
3145 _lib_libypclnt= lib/libypclnt
3146 .endif
3147
3148 .if ${MK_OPENSSL} == "no"
3149 lib/libradius__L: lib/libmd__L
3150 .endif
3151
3152 lib/libproc__L: \
3153     ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
3154 .if ${MK_CXX} != "no"
3155 lib/libproc__L: lib/libcxxrt__L
3156 .endif
3157
3158 .for _lib in ${_prereq_libs}
3159 ${_lib}__PL: .PHONY .MAKE
3160 .if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib})
3161         ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
3162                 cd ${.CURDIR}/${_lib}; \
3163                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
3164                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
3165                     DIRPRFX=${_lib}/ all; \
3166                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
3167                     DIRPRFX=${_lib}/ install
3168 .endif
3169 .endfor
3170
3171 .for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
3172 ${_lib}__L: .PHONY .MAKE
3173 .if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib})
3174         ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
3175                 cd ${.CURDIR}/${_lib}; \
3176                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
3177                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
3178                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
3179 .endif
3180 .endfor
3181
3182 _prereq_libs: ${_prereq_libs:S/$/__PL/}
3183 _startup_libs: ${_startup_libs:S/$/__L/}
3184 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
3185 _generic_libs: ${_generic_libs:S/$/__L/}
3186
3187 # Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
3188 # 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
3189 # that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
3190 # or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
3191 # parallel.  This is safe for the world stage of buildworld though since it has
3192 # already built libraries in a proper order and installed includes into
3193 # WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
3194 # avoid trashing a system if it crashes mid-install.
3195 .if !make(all) || defined(_PARALLEL_SUBDIR_OK)
3196 SUBDIR_PARALLEL=
3197 .endif
3198
3199 .include <bsd.subdir.mk>
3200
3201 .if make(check-old) || make(check-old-dirs) || \
3202     make(check-old-files) || make(check-old-libs) || \
3203     make(delete-old) || make(delete-old-dirs) || \
3204     make(delete-old-files) || make(delete-old-libs) || \
3205     make(list-old-dirs) || make(list-old-files) || make(list-old-libs)
3206
3207 #
3208 # check for / delete old files section
3209 #
3210
3211 .include "ObsoleteFiles.inc"
3212
3213 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
3214 else you can not start such an application. Consult UPDATING for more \
3215 information regarding how to cope with the removal/revision bump of a \
3216 specific library."
3217
3218 .if !defined(BATCH_DELETE_OLD_FILES)
3219 RM_I=-i
3220 .else
3221 RM_I=-fv
3222 .endif
3223
3224 list-old-files: .PHONY
3225         @cd ${.CURDIR}; \
3226         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3227             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" \
3228             -V "OLD_FILES:Mlib/*.so.*:S,^lib,usr/lib32," \
3229             -V "OLD_FILES:Musr/lib/*:S,^usr/lib,usr/lib32," | xargs -n1 | sort
3230
3231 delete-old-files: .PHONY
3232         @echo ">>> Removing old files (only deletes safe to delete libs)"
3233 # Ask for every old file if the user really wants to remove it.
3234 # It's annoying, but better safe than sorry.
3235 # NB: We cannot pass the list of OLD_FILES as a parameter because the
3236 # argument list will get too long. Using .for/.endfor make "loops" will make
3237 # the Makefile parser segfault.
3238         @exec 3<&0; \
3239         cd ${.CURDIR}; \
3240         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \
3241         while read file; do \
3242                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3243                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
3244                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
3245                 fi; \
3246                 for ext in debug symbols; do \
3247                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
3248                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3249                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
3250                               <&3; \
3251                   fi; \
3252                 done; \
3253         done
3254 # Remove catpages without corresponding manpages.
3255         @exec 3<&0; \
3256         find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | sort | \
3257         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
3258         while read catpage; do \
3259                 read manpage; \
3260                 if [ ! -e "$${manpage}" ]; then \
3261                         rm ${RM_I} $${catpage} <&3; \
3262                 fi; \
3263         done
3264         @echo ">>> Old files removed"
3265
3266 check-old-files: .PHONY
3267         @echo ">>> Checking for old files"
3268         @cd ${.CURDIR}; \
3269         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \
3270         while read file; do \
3271                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3272                         echo "${DESTDIR}/$${file}"; \
3273                 fi; \
3274                 for ext in debug symbols; do \
3275                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3276                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
3277                   fi; \
3278                 done; \
3279         done
3280 # Check for catpages without corresponding manpages.
3281         @find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \
3282         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
3283         while read catpage; do \
3284                 read manpage; \
3285                 if [ ! -e "$${manpage}" ]; then \
3286                         echo $${catpage}; \
3287                 fi; \
3288         done | sort
3289
3290 list-old-libs: .PHONY
3291         @cd ${.CURDIR}; \
3292         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3293             -V OLD_LIBS -V MOVED_LIBS -V "OLD_LIBS:Mlib/*:S,^lib,usr/lib32," \
3294             -V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib32," \
3295             -V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib32," | \
3296             xargs -n1 | sort
3297
3298 delete-old-libs: .PHONY
3299         @echo ">>> Removing old libraries"
3300         @echo "${OLD_LIBS_MESSAGE}" | fmt
3301         @exec 3<&0; \
3302         cd ${.CURDIR}; \
3303         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \
3304         while read file; do \
3305                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3306                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
3307                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
3308                 fi; \
3309                 for ext in debug symbols; do \
3310                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
3311                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3312                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
3313                               <&3; \
3314                   fi; \
3315                 done; \
3316         done
3317         @echo ">>> Old libraries removed"
3318
3319 check-old-libs: .PHONY
3320         @echo ">>> Checking for old libraries"
3321         @cd ${.CURDIR}; \
3322         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \
3323         while read file; do \
3324                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3325                         echo "${DESTDIR}/$${file}"; \
3326                 fi; \
3327                 for ext in debug symbols; do \
3328                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3329                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
3330                   fi; \
3331                 done; \
3332         done
3333
3334 list-old-dirs: .PHONY
3335         @cd ${.CURDIR}; \
3336         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3337             -V OLD_DIRS | xargs -n1 | sort -r
3338
3339 delete-old-dirs: .PHONY
3340         @echo ">>> Removing old directories"
3341         @cd ${.CURDIR}; \
3342         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \
3343         while read dir; do \
3344                 if [ -d "${DESTDIR}/$${dir}" ]; then \
3345                         rmdir -v "${DESTDIR}/$${dir}" || true; \
3346                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
3347                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
3348                 fi; \
3349                 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3350                         rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \
3351                 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3352                         echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
3353                 fi; \
3354         done
3355         @echo ">>> Old directories removed"
3356
3357 check-old-dirs: .PHONY
3358         @echo ">>> Checking for old directories"
3359         @cd ${.CURDIR}; \
3360         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \
3361         while read dir; do \
3362                 if [ -d "${DESTDIR}/$${dir}" ]; then \
3363                         echo "${DESTDIR}/$${dir}"; \
3364                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
3365                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
3366                 fi; \
3367                 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3368                         echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \
3369                 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3370                         echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
3371                 fi; \
3372         done
3373
3374 delete-old: delete-old-files delete-old-dirs .PHONY
3375         @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
3376
3377 check-old: check-old-files check-old-libs check-old-dirs .PHONY
3378         @echo "To remove old files and directories run '${MAKE_CMD} delete-old'."
3379         @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
3380
3381 .endif
3382
3383 #
3384 # showconfig - show build configuration.
3385 #
3386 showconfig: .PHONY
3387         @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \
3388           ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u
3389
3390 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
3391 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
3392
3393 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
3394 .if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF})
3395 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
3396         '${KERNCONFDIR}/${KERNCONF}' ; echo
3397 .endif
3398 .endif
3399
3400 .endif
3401
3402 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
3403 DTBOUTPUTPATH= ${.CURDIR}
3404 .endif
3405
3406 #
3407 # Build 'standalone' Device Tree Blob
3408 #
3409 builddtb: .PHONY
3410         @PATH=${TMPPATH} MACHINE=${TARGET} \
3411         sh ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
3412             "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
3413
3414 ###############
3415
3416 # cleanworld
3417 # In the following, the first 'rm' in a series will usually remove all
3418 # files and directories.  If it does not, then there are probably some
3419 # files with file flags set, so this unsets them and tries the 'rm' a
3420 # second time.  There are situations where this target will be cleaning
3421 # some directories via more than one method, but that duplication is
3422 # needed to correctly handle all the possible situations.  Removing all
3423 # files without file flags set in the first 'rm' instance saves time,
3424 # because 'chflags' will need to operate on fewer files afterwards.
3425 #
3426 # It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
3427 # created by bsd.obj.mk, except that we don't want to .include that file
3428 # in this makefile.  We don't do a cleandir walk if MK_AUTO_OBJ is yes
3429 # since it is not possible for files to land in the wrong place.
3430 #
3431 .if make(cleanworld)
3432 BW_CANONICALOBJDIR:=${OBJTOP}/
3433 .elif make(cleanuniverse)
3434 BW_CANONICALOBJDIR:=${OBJROOT}
3435 .if ${MK_UNIFIED_OBJDIR} == "no"
3436 .error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled.
3437 .endif
3438 .endif
3439 cleanworld cleanuniverse: .PHONY
3440 .if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \
3441     ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA}
3442         -rm -rf ${BW_CANONICALOBJDIR}*
3443         -chflags -R 0 ${BW_CANONICALOBJDIR}
3444         rm -rf ${BW_CANONICALOBJDIR}*
3445 .endif
3446 .if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \
3447     (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA})
3448 .if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
3449         #   To be safe in this case, fall back to a 'make cleandir'
3450         ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
3451 .endif
3452 .endif
3453
3454 .if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
3455 XDEV_CPUTYPE?=${CPUTYPE}
3456 .else
3457 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
3458 .endif
3459
3460 NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
3461         MK_MAN=no MK_NLS=no MK_PROFILE=no \
3462         MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WERROR=no \
3463         TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
3464         CPUTYPE=${XDEV_CPUTYPE}
3465
3466 XDDIR=${TARGET_ARCH}-freebsd
3467 XDTP?=/usr/${XDDIR}
3468 .if ${XDTP:N/*}
3469 .error XDTP variable should be an absolute path
3470 .endif
3471
3472 CDBOBJROOT=     ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/
3473 CDBOBJTOP=      ${CDBOBJROOT}${XDDIR}
3474 CDBENV= \
3475         INSTALL="sh ${.CURDIR}/tools/install.sh"
3476 CDENV= ${CDBENV} \
3477         TOOLS_PREFIX=${XDTP}
3478 CDMAKEARGS= \
3479         OBJTOP=${CDBOBJTOP:Q} \
3480         OBJROOT=${CDBOBJROOT:Q}
3481 CD2MAKEARGS= ${CDMAKEARGS}
3482
3483 .if ${WANT_COMPILER_TYPE} == gcc || \
3484     (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
3485 # GCC requires -isystem and -L when using a cross-compiler.  --sysroot
3486 # won't set header path and -L is used to ensure the base library path
3487 # is added before the port PREFIX library path.
3488 CD2CFLAGS+=     -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib
3489 # GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
3490 # combined with --sysroot.
3491 CD2CFLAGS+=     -B${XDDESTDIR}/usr/lib
3492 # Force using libc++ for external GCC.
3493 .if defined(X_COMPILER_TYPE) && \
3494     ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800
3495 CD2CXXFLAGS+=   -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \
3496                 -nostdinc++
3497 .endif
3498 .endif
3499 CD2CFLAGS+=     --sysroot=${XDDESTDIR}/
3500 CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \
3501         CPP="${CPP} ${CD2CFLAGS}" \
3502         MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
3503
3504 CDTMP=  ${OBJTOP}/${XDDIR}/tmp
3505 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${CDMAKEARGS} ${NOFUN}
3506 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} \
3507         ${MAKE} ${CD2MAKEARGS} ${NOFUN}
3508 .if ${MK_META_MODE} != "no"
3509 # Don't rebuild build-tools targets during normal build.
3510 CD2MAKE+=       BUILD_TOOLS_META=.NOMETA
3511 .endif
3512 XDDESTDIR=${DESTDIR}${XDTP}
3513
3514 .ORDER: xdev-build xdev-install xdev-links
3515 xdev: xdev-build xdev-install .PHONY
3516
3517 .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
3518 xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY
3519
3520 _xb-worldtmp: .PHONY
3521         mkdir -p ${CDTMP}/usr
3522         ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
3523             -p ${CDTMP}/usr >/dev/null
3524
3525 _xb-bootstrap-tools: .PHONY
3526 .for _tool in \
3527     ${_clang_tblgen} \
3528     ${_yacc}
3529         ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
3530         cd ${.CURDIR}/${_tool}; \
3531         if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
3532         ${CDMAKE} DIRPRFX=${_tool}/ all; \
3533         ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
3534 .endfor
3535
3536 _xb-build-tools: .PHONY
3537         ${_+_}@cd ${.CURDIR}; \
3538         ${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools
3539
3540 XDEVDIRS= \
3541     ${_clang_libs} \
3542     ${_lld} \
3543     ${_elftctools} \
3544     usr.bin/ar \
3545     ${_clang}
3546
3547 _xb-cross-tools: .PHONY
3548 .for _tool in ${XDEVDIRS}
3549         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \
3550         cd ${.CURDIR}/${_tool}; \
3551         if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
3552         ${CDMAKE} DIRPRFX=${_tool}/ all
3553 .endfor
3554
3555 _xi-mtree: .PHONY
3556         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
3557         mkdir -p ${XDDESTDIR}
3558         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \
3559             -p ${XDDESTDIR} >/dev/null
3560         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
3561             -p ${XDDESTDIR}/usr >/dev/null
3562         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
3563             -p ${XDDESTDIR}/usr/include >/dev/null
3564 .if defined(_LIBCOMPAT)
3565         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
3566             -p ${XDDESTDIR}/usr >/dev/null
3567 .endif
3568 .if ${MK_TESTS} != "no"
3569         mkdir -p ${XDDESTDIR}${TESTSBASE}
3570         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
3571             -p ${XDDESTDIR}${TESTSBASE} >/dev/null
3572 .endif
3573
3574 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
3575 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY
3576
3577 _xi-cross-tools: .PHONY
3578         @echo "_xi-cross-tools"
3579 .for _tool in ${XDEVDIRS}
3580         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
3581         cd ${.CURDIR}/${_tool}; \
3582         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
3583 .endfor
3584
3585 _xi-includes: .PHONY
3586 .if !defined(NO_OBJWALK)
3587         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \
3588                 DESTDIR=${XDDESTDIR}
3589 .endif
3590         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
3591                 DESTDIR=${XDDESTDIR}
3592
3593 _xi-libraries: .PHONY
3594         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
3595                 DESTDIR=${XDDESTDIR}
3596
3597 xdev-links: .PHONY
3598         ${_+_}cd ${XDDESTDIR}/usr/bin; \
3599         mkdir -p ../../../../usr/bin; \
3600                 for i in *; do \
3601                         ln -sf ../../${XDTP}/usr/bin/$$i \
3602                             ../../../../usr/bin/${XDDIR}-$$i; \
3603                         ln -sf ../../${XDTP}/usr/bin/$$i \
3604                             ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \
3605                 done