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