]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
Merge branch 'releng/13.2' into releng-CDN/13.2
[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+= usr.bin/clang/clang-tblgen
2353 .endif
2354 .if ${MK_LLDB} != "no"
2355 _clang_tblgen+= usr.bin/clang/lldb-tblgen
2356 .endif
2357 ${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal
2358 ${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal
2359 ${_bt}-usr.bin/clang/lldb-tblgen: ${_bt}-lib/clang/libllvmminimal
2360 .endif
2361
2362 .if ${MK_LOCALES} != "no"
2363 _localedef=     usr.bin/localedef
2364 ${_bt}-usr.bin/localedef: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2365 .endif
2366
2367 .if ${MK_ICONV} != "no"
2368 _mkesdb=        usr.bin/mkesdb
2369 _mkcsmapper=    usr.bin/mkcsmapper
2370 ${_bt}-usr.bin/mkesdb: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2371 ${_bt}-usr.bin/mkcsmapper: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2372 .endif
2373
2374 .if ${MK_KERBEROS} != "no"
2375 _kerberos5_bootstrap_tools= \
2376         kerberos5/tools/make-roken \
2377         kerberos5/lib/libroken \
2378         kerberos5/lib/libvers \
2379         kerberos5/tools/asn1_compile \
2380         kerberos5/tools/slc \
2381         usr.bin/compile_et
2382
2383 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
2384 .for _tool in ${_kerberos5_bootstrap_tools}
2385 ${_bt}-${_tool}: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2386 .endfor
2387 .endif
2388
2389 ${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd
2390
2391 # The tools listed in _basic_bootstrap_tools will generally not be
2392 # bootstrapped unless BOOTSTRAP_ALL_TOOL is set. However, when building on a
2393 # Linux or MacOS host the host versions are incompatible so we need to build
2394 # them from the source tree. Usually the link name will be the same as the subdir,
2395 # but some directories such as grep or test install multiple binaries. In that
2396 # case we use the _basic_bootstrap_tools_multilink variable which is a list of
2397 # subdirectory and comma-separated list of files.
2398 _basic_bootstrap_tools_multilink=usr.bin/grep grep,egrep,fgrep
2399 _basic_bootstrap_tools_multilink+=bin/test test,[
2400 # bootstrap tools needed by buildworld:
2401 _basic_bootstrap_tools+=usr.bin/cut bin/expr usr.bin/gencat usr.bin/join \
2402     usr.bin/mktemp bin/realpath bin/rmdir usr.bin/sed usr.bin/sort \
2403     usr.bin/truncate usr.bin/tsort
2404 # Some build scripts use nawk instead of awk (this happens at least in
2405 # cddl/contrib/opensolaris/lib/libdtrace/common/mknames.sh) so we need both awk
2406 # and nawk in ${WORLDTMP}/legacy/bin.
2407 _basic_bootstrap_tools_multilink+=usr.bin/awk awk,nawk
2408 # file2c is required for building usr.sbin/config:
2409 _basic_bootstrap_tools+=usr.bin/file2c
2410 # uuencode/uudecode required for share/tabset
2411 _basic_bootstrap_tools+=usr.bin/uuencode usr.bin/uudecode
2412 # xargs is required by mkioctls
2413 _basic_bootstrap_tools+=usr.bin/xargs
2414 # cap_mkdb is required for share/termcap:
2415 _basic_bootstrap_tools+=usr.bin/cap_mkdb
2416 # services_mkdb/pwd_mkdb are required for installworld:
2417 _basic_bootstrap_tools+=usr.sbin/services_mkdb usr.sbin/pwd_mkdb
2418 # ldd is required for installcheck (TODO: just always use /usr/bin/ldd instead?)
2419 .if !defined(CROSSBUILD_HOST)
2420 # ldd is only needed for updating the running system so we don't need to
2421 # bootstrap ldd on non-FreeBSD systems
2422 _basic_bootstrap_tools+=usr.bin/ldd
2423 .endif
2424 # sysctl/chflags are required for installkernel:
2425 .if !defined(CROSSBUILD_HOST)
2426 _basic_bootstrap_tools+=bin/chflags
2427 # Note: sysctl does not bootstrap on FreeBSD < 13 anymore, but that doesn't
2428 # matter since we don't need any of the new features for the build.
2429 _bootstrap_tools_links+=sysctl
2430 .else
2431 # When building on non-FreeBSD, install a fake chflags instead since the
2432 # version from the source tree cannot work. We also don't need sysctl since we
2433 # are install with -DNO_ROOT.
2434 _other_bootstrap_tools+=tools/build/cross-build/fake_chflags
2435 .endif
2436 # mkfifo is used by sys/conf/newvers.sh
2437 _basic_bootstrap_tools+=usr.bin/mkfifo
2438 # jot is needed for the mkimg tests
2439 _basic_bootstrap_tools+=usr.bin/jot
2440
2441 .if ${MK_BOOT} != "no"
2442 # md5 is used by boot/beri (and possibly others)
2443 _basic_bootstrap_tools+=sbin/md5
2444 .endif
2445
2446 # tzsetup is needed as an install tool
2447 .if ${MK_ZONEINFO} != "no"
2448 _basic_bootstrap_tools+=usr.sbin/tzsetup
2449 .endif
2450
2451 .if defined(BOOTSTRAP_ALL_TOOLS)
2452 _other_bootstrap_tools+=${_basic_bootstrap_tools}
2453 .for _subdir _links in ${_basic_bootstrap_tools_multilink}
2454 _other_bootstrap_tools+=${_subdir}
2455 .endfor
2456 ${_bt}-usr.bin/awk: ${_bt_lex_depend} ${_bt}-usr.bin/yacc
2457 ${_bt}-bin/expr: ${_bt_lex_depend} ${_bt}-usr.bin/yacc
2458 # If we are bootstrapping file2c, we have to build it before config:
2459 ${_bt}-usr.sbin/config: ${_bt}-usr.bin/file2c ${_bt_lex_depend}
2460 # Note: no symlink to make/bmake in the !BOOTSTRAP_ALL_TOOLS case here since
2461 # the links to make/bmake make links will have already have been created in the
2462 # `make legacy` step. Not adding a link to make is important on non-FreeBSD
2463 # since "make" will usually point to GNU make there.
2464 _other_bootstrap_tools+=usr.bin/bmake
2465
2466 # Avoid dependency on host bz2 headers:
2467 _other_bootstrap_tools+=lib/libbz2
2468 ${_bt}-usr.bin/grep: ${_bt}-lib/libbz2
2469
2470 # libdwarf depends on libz
2471 _other_bootstrap_tools+=lib/libz
2472 ${_bt}-lib/libdwarf: ${_bt}-lib/libz
2473
2474 # libroken depends on libcrypt
2475 _other_bootstrap_tools+=lib/libcrypt
2476 ${_bt}-lib/libroken: ${_bt}-lib/libcrypt
2477 .else
2478 # All tools in _basic_bootstrap_tools have the same name as the subdirectory
2479 # so we can use :T to get the name of the symlinks that we need to create.
2480 _bootstrap_tools_links+=${_basic_bootstrap_tools:T}
2481 .for _subdir _links in ${_basic_bootstrap_tools_multilink}
2482 _bootstrap_tools_links+=${_links:S/,/ /g}
2483 .endfor
2484 .endif  # defined(BOOTSTRAP_ALL_TOOLS)
2485
2486 # Link the tools that we need for building but don't need to bootstrap because
2487 # the host version is known to be compatible into ${WORLDTMP}/legacy
2488 # We do this before building any of the bootstrap tools in case they depend on
2489 # the presence of any of the links (e.g. as m4/lex/awk)
2490 ${_bt}-links: .PHONY
2491
2492 .for _tool in ${_bootstrap_tools_links}
2493 ${_bt}-link-${_tool}: .PHONY .MAKE
2494         @rm -f "${WORLDTMP}/legacy/bin/${_tool}"; \
2495         source_path=`which ${_tool}`; \
2496         if [ ! -e "$${source_path}" ] ; then \
2497                 echo "Cannot find host tool '${_tool}'"; false; \
2498         fi; \
2499         cp -pf "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}"
2500 ${_bt}-links: ${_bt}-link-${_tool}
2501 .endfor
2502
2503 bootstrap-tools: ${_bt}-links .PHONY
2504
2505 #       Please document (add comment) why something is in 'bootstrap-tools'.
2506 #       Try to bound the building of the bootstrap-tool to just the
2507 #       FreeBSD versions that need the tool built at this stage of the build.
2508 .for _tool in \
2509     ${_clang_tblgen} \
2510     ${_kerberos5_bootstrap_tools} \
2511     ${_strfile} \
2512     usr.bin/dtc \
2513     ${_cat} \
2514     ${_kbdcontrol} \
2515     ${_elftoolchain_libs} \
2516     lib/libopenbsd \
2517     usr.bin/mandoc \
2518     usr.bin/rpcgen \
2519     ${_yacc} \
2520     ${_m4} \
2521     ${_lex} \
2522     ${_other_bootstrap_tools} \
2523     usr.bin/xinstall \
2524     ${_gensnmptree} \
2525     ${_config} \
2526     ${_flua} \
2527     ${_crunchide} \
2528     ${_crunchgen} \
2529     ${_mkimg} \
2530     ${_nmtree} \
2531     ${_vtfontcvt} \
2532     ${_localedef} \
2533     ${_mkcsmapper} \
2534     ${_mkesdb} \
2535     ${_zic} \
2536     ${LOCAL_BSTOOL_DIRS}
2537 ${_bt}-${_tool}: ${_bt}-links .PHONY .MAKE
2538         ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2539                 cd ${.CURDIR}/${_tool}; \
2540                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2541                 if [ "${_tool}" = "usr.bin/lex" ]; then \
2542                         ${MAKE} DIRPRFX=${_tool}/ bootstrap; \
2543                 fi; \
2544                 ${MAKE} DIRPRFX=${_tool}/ all; \
2545                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install
2546
2547 bootstrap-tools: ${_bt}-${_tool}
2548 .endfor
2549 .if target(${_bt}-lib/libmd)
2550 # If we are bootstrapping libmd (e.g. when building on macOS/Linux) add the
2551 # necessary dependencies:
2552 ${_bt}-usr.bin/sort: ${_bt}-lib/libmd
2553 ${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd
2554 ${_bt}-sbin/md5: ${_bt}-lib/libmd
2555 .endif
2556
2557
2558 #
2559 # build-tools: Build special purpose build tools
2560 #
2561 .if !defined(NO_SHARE) && ${MK_SYSCONS} != "no"
2562 _share= share/syscons/scrnmaps
2563 .endif
2564
2565 .if ${MK_RESCUE} != "no"
2566 # rescue includes programs that have build-tools targets
2567 _rescue=rescue/rescue
2568 .endif
2569
2570 .if ${MK_TCSH} != "no"
2571 _tcsh=bin/csh
2572 .endif
2573 .if ${MK_FILE} != "no"
2574 _libmagic=lib/libmagic
2575 .endif
2576
2577 .if ${MK_PMC} != "no"
2578 _jevents=lib/libpmc/pmu-events
2579 .endif
2580
2581 # kernel-toolchain skips _cleanobj, so handle cleaning up previous
2582 # build-tools directories if needed.
2583 .if ${MK_CLEAN} == "yes" && make(kernel-toolchain)
2584 _bt_clean=      ${CLEANDIR}
2585 .endif
2586
2587 .for _tool in \
2588     ${_tcsh} \
2589     bin/sh \
2590     ${LOCAL_TOOL_DIRS} \
2591     ${_jevents} \
2592     lib/ncurses/ncurses \
2593     ${_rescue} \
2594     ${_share} \
2595     usr.bin/awk \
2596     ${_libmagic} \
2597     usr.bin/vi/catalog
2598 build-tools_${_tool}: .PHONY
2599         ${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \
2600                 cd ${.CURDIR}/${_tool}; \
2601                 if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \
2602                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2603                 ${MAKE} DIRPRFX=${_tool}/ build-tools
2604 build-tools: build-tools_${_tool}
2605 .endfor
2606
2607 #
2608 # kernel-tools: Build kernel-building tools
2609 #
2610 kernel-tools: .PHONY
2611         mkdir -p ${WORLDTMP}/usr
2612         ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2613             -p ${WORLDTMP}/usr >/dev/null
2614
2615 #
2616 # cross-tools: All the tools needed to build the rest of the system after
2617 # we get done with the earlier stages. It is the last set of tools needed
2618 # to begin building the target binaries.
2619 #
2620 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BUILD_WITH_STRICT_TMPPATH} != 0
2621 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
2622 _btxld=         usr.sbin/btxld
2623 .endif
2624 .endif
2625
2626 # Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
2627 # resulting from missing bug fixes or ELF Toolchain updates.
2628 .if ${MK_CDDL} != "no"
2629 _dtrace_tools= cddl/lib/libctf cddl/lib/libspl cddl/usr.bin/ctfconvert \
2630     cddl/usr.bin/ctfmerge
2631 .endif
2632
2633 # If we're given an XAS, don't build binutils.
2634 .if ${XAS:M/*} == ""
2635 .if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2636 _elftctools=    lib/libelftc \
2637                 lib/libpe \
2638                 usr.bin/elfctl \
2639                 usr.bin/elfdump \
2640                 usr.bin/objcopy \
2641                 usr.bin/nm \
2642                 usr.bin/size \
2643                 usr.bin/strings
2644 # These are not required by the build, but can be useful for developers who
2645 # cross-build on a FreeBSD 10 host:
2646 _elftctools+=   usr.bin/addr2line
2647 .endif
2648 .elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2649 # If cross-building with an external binutils we still need to build strip for
2650 # the target (for at least crunchide).
2651 _elftctools=    lib/libelftc \
2652                 lib/libpe \
2653                 usr.bin/elfctl \
2654                 usr.bin/elfdump \
2655                 usr.bin/objcopy
2656 .endif
2657
2658 .if ${MK_CLANG_BOOTSTRAP} != "no"
2659 _clang=         usr.bin/clang
2660 .endif
2661 .if ${MK_LLD_BOOTSTRAP} != "no"
2662 _lld=           usr.bin/clang/lld
2663 .endif
2664 .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no"
2665 _clang_libs=    lib/clang
2666 .endif
2667 .if ${MK_USB} != "no"
2668 _usb_tools=     stand/usb/tools
2669 .endif
2670
2671 .if ${BUILD_WITH_STRICT_TMPPATH} != 0 || defined(BOOTSTRAP_ALL_TOOLS)
2672 _ar=usr.bin/ar
2673 .endif
2674
2675 cross-tools: .MAKE .PHONY
2676 .for _tool in \
2677     ${LOCAL_XTOOL_DIRS} \
2678     ${_ar} \
2679     ${_clang_libs} \
2680     ${_clang} \
2681     ${_lld} \
2682     ${_elftctools} \
2683     ${_dtrace_tools} \
2684     ${_btxld} \
2685     ${_usb_tools}
2686         ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2687                 cd ${.CURDIR}/${_tool}; \
2688                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2689                 ${MAKE} DIRPRFX=${_tool}/ all; \
2690                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install
2691 .endfor
2692
2693 #
2694 # native-xtools is the current target for qemu-user cross builds of ports
2695 # via poudriere and the imgact_binmisc kernel module.
2696 # This target merely builds a toolchan/sysroot, then builds the tools it wants
2697 # with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain
2698 # already built.  It then installs the static tools to NXBDESTDIR for Poudriere
2699 # to pickup.
2700 #
2701 NXBOBJROOT=     ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/
2702 NXBOBJTOP=      ${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH}
2703 NXTP?=          /nxb-bin
2704 .if ${NXTP:N/*}
2705 .error NXTP variable should be an absolute path
2706 .endif
2707 NXBDESTDIR?=    ${DESTDIR}${NXTP}
2708
2709 # This is the list of tools to be built/installed as static and where
2710 # appropriate to build for the given TARGET.TARGET_ARCH.
2711 NXBDIRS+= \
2712     bin/cat \
2713     bin/chmod \
2714     bin/cp \
2715     ${_tcsh} \
2716     bin/echo \
2717     bin/expr \
2718     bin/hostname \
2719     bin/ln \
2720     bin/ls \
2721     bin/mkdir \
2722     bin/mv \
2723     bin/ps \
2724     bin/realpath \
2725     bin/rm \
2726     bin/rmdir \
2727     bin/sh \
2728     bin/sleep \
2729     sbin/md5 \
2730     sbin/sysctl \
2731     usr.bin/addr2line \
2732     usr.bin/ar \
2733     usr.bin/awk \
2734     usr.bin/basename \
2735     usr.bin/bmake \
2736     usr.bin/bzip2 \
2737     usr.bin/cmp \
2738     usr.bin/diff \
2739     usr.bin/dirname \
2740     usr.bin/objcopy \
2741     usr.bin/env \
2742     usr.bin/fetch \
2743     usr.bin/find \
2744     usr.bin/grep \
2745     usr.bin/gzip \
2746     usr.bin/head \
2747     usr.bin/id \
2748     usr.bin/lex \
2749     usr.bin/limits \
2750     usr.bin/mandoc \
2751     usr.bin/mktemp \
2752     usr.bin/mt \
2753     usr.bin/nm \
2754     usr.bin/patch \
2755     usr.bin/readelf \
2756     usr.bin/sed \
2757     usr.bin/size \
2758     usr.bin/sort \
2759     usr.bin/strings \
2760     usr.bin/tar \
2761     usr.bin/touch \
2762     usr.bin/tr \
2763     usr.bin/true \
2764     usr.bin/uniq \
2765     usr.bin/unzip \
2766     usr.bin/wc \
2767     usr.bin/xargs \
2768     usr.bin/xinstall \
2769     usr.bin/xz \
2770     usr.bin/yacc \
2771     usr.sbin/chown
2772
2773 SUBDIR_DEPEND_usr.bin/clang=    lib/clang
2774 .if ${MK_CLANG} != "no"
2775 NXBDIRS+=       lib/clang
2776 NXBDIRS+=       usr.bin/clang
2777 .endif
2778 # XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs
2779 # to be evaluated after NXBDIRS is set.
2780 .if make(install) && !empty(SUBDIR_OVERRIDE)
2781 SUBDIR= ${SUBDIR_OVERRIDE}
2782 .endif
2783
2784 NXBMAKEARGS+= \
2785         OBJTOP=${NXBOBJTOP:Q} \
2786         OBJROOT=${NXBOBJROOT:Q} \
2787         -DNO_SHARED \
2788         -DNO_CPU_CFLAGS \
2789         -DNO_PIC \
2790         MK_CASPER=no \
2791         MK_CLANG_EXTRAS=no \
2792         MK_CLANG_FORMAT=no \
2793         MK_CLANG_FULL=no \
2794         MK_CTF=no \
2795         MK_DEBUG_FILES=no \
2796         MK_HTML=no \
2797         MK_LLDB=no \
2798         MK_MAN=no \
2799         MK_MAN_UTILS=yes \
2800         MK_OFED=no \
2801         MK_OPENSSH=no \
2802         MK_PROFILE=no \
2803         MK_RETPOLINE=no \
2804         MK_SENDMAIL=no \
2805         MK_SVNLITE=no \
2806         MK_SSP=no \
2807         MK_TESTS=no \
2808         MK_WERROR=no \
2809         MK_ZFS=no
2810
2811 NXBMAKEENV+= \
2812         MAKEOBJDIRPREFIX=
2813
2814 # This should match all of the knobs in lib/Makefile that it takes to avoid
2815 # descending into lib/clang!
2816 NXBTNOTOOLS=    MK_CLANG=no MK_LLD=no MK_LLDB=no MK_LLVM_BINUTILS=no
2817
2818 .if make(native-xtools*) && \
2819     (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH))
2820 .error Missing NXB_TARGET / NXB_TARGET_ARCH
2821 .endif
2822 # For 'toolchain' we want to produce native binaries that themselves generate
2823 # native binaries.
2824 NXBTMAKE=       ${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \
2825                 TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH}
2826 # For 'everything' we want to produce native binaries (hence -target to
2827 # be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries.
2828 # TARGET/TARGET_ARCH are still passed along from user.
2829 #
2830 # Use the toolchain we create as an external toolchain.
2831 .if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*}
2832 NXBMAKE+=       XCC="${XCC}" \
2833                 XCXX="${XCXX}" \
2834                 XCPP="${XCPP}"
2835 .else
2836 NXBMAKE+=       XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \
2837                 XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \
2838                 XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp"
2839 .endif
2840 NXBMAKE+=       ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \
2841                 MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \
2842                 TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \
2843                 TARGET_TRIPLE=${MACHINE_TRIPLE:Q}
2844 # NXBDIRS is improperly based on MACHINE rather than NXB_TARGET.  Need to
2845 # invoke a sub-make to reevaluate MK_CLANG, etc, for NXBDIRS.
2846 NXBMAKE+=       SUBDIR_OVERRIDE='$${NXBDIRS:M*}'
2847 # Need to avoid the -isystem logic when using clang as an external toolchain
2848 # even if the TARGET being built for wants GCC.
2849 NXBMAKE+=       WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}'
2850 native-xtools: .PHONY
2851         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj
2852         # Build the bootstrap/host/cross tools that produce native binaries
2853         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain
2854         # Populate includes/libraries sysroot that produce native binaries.
2855         # This is split out from 'toolchain' above mostly so that target LLVM
2856         # libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without
2857         # polluting the cross-compiler build.  The LLVM libs are skipped
2858         # here to avoid the problem but are kept in 'toolchain' so that
2859         # needed build tools are built.
2860         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes ${NXBTNOTOOLS}
2861         ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries ${NXBTNOTOOLS}
2862 .if !defined(NO_OBJWALK)
2863         ${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj
2864 .endif
2865         ${_+_}cd ${.CURDIR}; ${NXBMAKE} everything
2866         @echo ">> native-xtools done.  Use 'make native-xtools-install' to install to a given DESTDIR"
2867
2868 native-xtools-install: .PHONY
2869         mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
2870         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2871             -p ${NXBDESTDIR}/usr >/dev/null
2872         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2873             -p ${NXBDESTDIR}/usr/include >/dev/null
2874         ${_+_}cd ${.CURDIR}; ${NXBMAKE} \
2875             DESTDIR=${NXBDESTDIR} \
2876             -DNO_ROOT \
2877             install
2878
2879 #
2880 # hierarchy - ensure that all the needed directories are present
2881 #
2882 hierarchy hier: .MAKE .PHONY
2883         ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
2884
2885 #
2886 # libraries - build all libraries, and install them under ${DESTDIR}.
2887 #
2888 # The list of libraries with dependents (${_prebuild_libs}) and their
2889 # interdependencies (__L) are built automatically by the
2890 # ${.CURDIR}/tools/make_libdeps.sh script.
2891 #
2892 libraries: .MAKE .PHONY
2893         ${_+_}cd ${.CURDIR}; \
2894             ${MAKE} -f Makefile.inc1 _prereq_libs; \
2895             ${MAKE} -f Makefile.inc1 _startup_libs; \
2896             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
2897             ${MAKE} -f Makefile.inc1 _generic_libs
2898
2899 #
2900 # static libgcc.a prerequisite for shared libc
2901 #
2902 _prereq_libs= lib/libcompiler_rt
2903 .if ${MK_SSP} != "no"
2904 _prereq_libs+= lib/libssp_nonshared
2905 .endif
2906
2907 # These dependencies are not automatically generated:
2908 #
2909 # lib/csu and lib/libc must be built before
2910 # all shared libraries for ELF.
2911 #
2912 _startup_libs=  lib/csu
2913 _startup_libs+= lib/libc
2914 _startup_libs+= lib/libc_nonshared
2915 .if ${MK_LIBCPLUSPLUS} != "no"
2916 _startup_libs+= lib/libcxxrt
2917 .endif
2918
2919 _prereq_libs+=  lib/libgcc_eh lib/libgcc_s
2920 _startup_libs+= lib/libgcc_eh lib/libgcc_s
2921
2922 lib/libgcc_s__L: lib/libc__L
2923 lib/libgcc_s__L: lib/libc_nonshared__L
2924 .if ${MK_LIBCPLUSPLUS} != "no"
2925 lib/libcxxrt__L: lib/libgcc_s__L
2926 .endif
2927
2928 _prebuild_libs= ${_kerberos5_lib_libasn1} \
2929                 ${_kerberos5_lib_libhdb} \
2930                 ${_kerberos5_lib_libheimbase} \
2931                 ${_kerberos5_lib_libheimntlm} \
2932                 ${_libsqlite3} \
2933                 ${_kerberos5_lib_libheimipcc} \
2934                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
2935                 ${_kerberos5_lib_libroken} \
2936                 ${_kerberos5_lib_libwind} \
2937                 lib/libbz2 ${_libcom_err} lib/libcrypt \
2938                 lib/libelf lib/libexpat \
2939                 lib/libfigpar \
2940                 ${_lib_libgssapi} \
2941                 lib/libjail \
2942                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
2943                 lib/libzstd \
2944                 ${_lib_casper} \
2945                 lib/ncurses/ncurses \
2946                 lib/libopie lib/libpam/libpam lib/libthr \
2947                 ${_lib_libradius} lib/libsbuf lib/libtacplus \
2948                 lib/libgeom \
2949                 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
2950                 ${_cddl_lib_libuutil} \
2951                 ${_cddl_lib_libavl} \
2952                 ${_cddl_lib_libicp} \
2953                 ${_cddl_lib_libicp_rescue} \
2954                 ${_cddl_lib_libspl} \
2955                 ${_cddl_lib_libtpool} \
2956                 ${_cddl_lib_libzfs_core} ${_cddl_lib_libzfs} \
2957                 ${_cddl_lib_libzutil} \
2958                 ${_cddl_lib_libctf} ${_cddl_lib_libzfsbootenv} \
2959                 lib/libufs \
2960                 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
2961                 ${_secure_lib_libcrypto} ${_secure_lib_libssl} \
2962                 ${_lib_libldns} ${_secure_lib_libssh}
2963
2964 .if ${MK_DIALOG} != "no"
2965 _prebuild_libs+= gnu/lib/libdialog
2966 gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncurses__L
2967 .endif
2968
2969 .if ${MK_GOOGLETEST} != "no"
2970 _prebuild_libs+= lib/libregex
2971 .endif
2972
2973 .if ${MK_LIBCPLUSPLUS} != "no"
2974 _prebuild_libs+= lib/libc++
2975 .endif
2976
2977 lib/libgeom__L: lib/libexpat__L lib/libsbuf__L
2978 lib/libkvm__L: lib/libelf__L
2979
2980 .if ${MK_RADIUS_SUPPORT} != "no"
2981 _lib_libradius= lib/libradius
2982 .endif
2983
2984 .if ${MK_OFED} != "no"
2985 _prebuild_libs+= \
2986         lib/ofed/libibverbs \
2987         lib/ofed/libibmad \
2988         lib/ofed/libibumad \
2989         lib/ofed/complib \
2990         lib/ofed/libmlx5
2991
2992 lib/ofed/libibmad__L:   lib/ofed/libibumad__L
2993 lib/ofed/complib__L:    lib/libthr__L
2994 lib/ofed/libmlx5__L:    lib/ofed/libibverbs__L lib/libthr__L
2995 .endif
2996
2997 .if ${MK_CASPER} != "no"
2998 _lib_casper=    lib/libcasper
2999 .endif
3000
3001 lib/libpjdlog__L: lib/libutil__L
3002 lib/libcasper__L: lib/libnv__L
3003 lib/liblzma__L: lib/libmd__L lib/libthr__L
3004 lib/libzstd__L: lib/libthr__L
3005
3006 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib}
3007 .if ${MK_IPFILTER} != "no"
3008 _generic_libs+= sbin/ipf/libipf
3009 .endif
3010 .for _DIR in ${LOCAL_LIB_DIRS}
3011 .if ${_DIR} == ".WAIT"  || (empty(_generic_libs:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile))
3012 _generic_libs+= ${_DIR}
3013 .endif
3014 .endfor
3015
3016 lib/libopie__L lib/libtacplus__L: lib/libmd__L
3017
3018 .if ${MK_CDDL} != "no"
3019 _cddl_lib_libumem= cddl/lib/libumem
3020 _cddl_lib_libnvpair= cddl/lib/libnvpair
3021 _cddl_lib_libavl= cddl/lib/libavl
3022 _cddl_lib_libuutil= cddl/lib/libuutil
3023 _cddl_lib_libspl= cddl/lib/libspl
3024
3025 cddl/lib/libavl__L: cddl/lib/libspl__L
3026 cddl/lib/libnvpair__L: cddl/lib/libspl__L
3027 cddl/lib/libuutil__L: cddl/lib/libavl__L cddl/lib/libspl__L
3028
3029 .if ${MK_ZFS} != "no"
3030 _cddl_lib_libicp= cddl/lib/libicp
3031 _cddl_lib_libicp_rescue= cddl/lib/libicp_rescue
3032 _cddl_lib_libtpool= cddl/lib/libtpool
3033 _cddl_lib_libzutil= cddl/lib/libzutil
3034 _cddl_lib_libzfs_core= cddl/lib/libzfs_core
3035 _cddl_lib_libzfs= cddl/lib/libzfs
3036 _cddl_lib_libzfsbootenv= cddl/lib/libzfsbootenv
3037
3038 cddl/lib/libtpool__L: cddl/lib/libspl__L
3039
3040 cddl/lib/libzutil__L: cddl/lib/libavl__L lib/libgeom__L lib/msun__L cddl/lib/libtpool__L
3041
3042 cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L cddl/lib/libspl__L cddl/lib/libzutil__L
3043
3044 cddl/lib/libzfs__L: cddl/lib/libzfs_core__L lib/msun__L lib/libutil__L
3045 cddl/lib/libzfs__L: lib/libthr__L lib/libmd__L lib/libz__L cddl/lib/libumem__L
3046 cddl/lib/libzfs__L: cddl/lib/libuutil__L cddl/lib/libavl__L lib/libgeom__L
3047 cddl/lib/libzfs__L: cddl/lib/libnvpair__L cddl/lib/libzutil__L
3048 cddl/lib/libzfs__L: secure/lib/libcrypto__L
3049
3050 cddl/lib/libzfsbootenv__L: cddl/lib/libzfs__L
3051 lib/libbe__L: cddl/lib/libzfs__L cddl/lib/libzfsbootenv__L
3052 .endif
3053 _cddl_lib_libctf= cddl/lib/libctf
3054 _cddl_lib= cddl/lib
3055 cddl/lib/libctf__L: lib/libz__L cddl/lib/libspl__L
3056 .endif
3057 # cddl/lib/libdtrace requires lib/libproc and lib/librtld_db
3058 _prebuild_libs+=        lib/libprocstat lib/libproc lib/librtld_db
3059 lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L
3060 lib/libproc__L: lib/libprocstat__L
3061 lib/librtld_db__L: lib/libprocstat__L
3062
3063 .if ${MK_CRYPT} != "no"
3064 .if ${MK_OPENSSL} != "no"
3065 _secure_lib_libcrypto= secure/lib/libcrypto
3066 _secure_lib_libssl= secure/lib/libssl
3067 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
3068 secure/lib/libcrypto__L: lib/libthr__L
3069 .if ${MK_LDNS} != "no"
3070 _lib_libldns= lib/libldns
3071 lib/libldns__L: secure/lib/libssl__L
3072 .endif
3073 .if ${MK_OPENSSH} != "no"
3074 _secure_lib_libssh= secure/lib/libssh
3075 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
3076 .if ${MK_LDNS} != "no"
3077 secure/lib/libssh__L: lib/libldns__L
3078 .endif
3079 .if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no"
3080 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
3081     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
3082     lib/libmd__L kerberos5/lib/libroken__L
3083 .endif
3084 .endif
3085 .endif
3086 _secure_lib=    secure/lib
3087 .endif
3088
3089 .if ${MK_KERBEROS} != "no"
3090 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
3091 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
3092     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
3093     kerberos5/lib/libwind__L lib/libsqlite3__L
3094 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
3095     kerberos5/lib/libroken__L lib/libcom_err__L
3096 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
3097     secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
3098 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
3099     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
3100     kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
3101     kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
3102 kerberos5/lib/libroken__L: lib/libcrypt__L
3103 kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
3104 kerberos5/lib/libheimbase__L: lib/libthr__L
3105 kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
3106 .endif
3107
3108 lib/libsqlite3__L: lib/libthr__L
3109
3110 .if ${MK_GSSAPI} != "no"
3111 _lib_libgssapi= lib/libgssapi
3112 .endif
3113
3114 .if ${MK_KERBEROS} != "no"
3115 _kerberos5_lib= kerberos5/lib
3116 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
3117 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
3118 _kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
3119 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
3120 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
3121 _kerberos5_lib_libroken= kerberos5/lib/libroken
3122 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
3123 _libsqlite3= lib/libsqlite3
3124 _kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
3125 _kerberos5_lib_libwind= kerberos5/lib/libwind
3126 _libcom_err= lib/libcom_err
3127 .endif
3128
3129 .if ${MK_NIS} != "no"
3130 _lib_libypclnt= lib/libypclnt
3131 .endif
3132
3133 .if ${MK_OPENSSL} == "no"
3134 lib/libradius__L: lib/libmd__L
3135 .endif
3136
3137 lib/libproc__L: \
3138     ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
3139 .if ${MK_CXX} != "no" && ${MK_LIBCPLUSPLUS} != "no"
3140 lib/libproc__L: lib/libcxxrt__L
3141 .endif
3142
3143 .for _lib in ${_prereq_libs}
3144 ${_lib}__PL: .PHONY .MAKE
3145 .if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib})
3146         ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
3147                 cd ${.CURDIR}/${_lib}; \
3148                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
3149                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
3150                     DIRPRFX=${_lib}/ all; \
3151                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
3152                     DIRPRFX=${_lib}/ install
3153 .endif
3154 .endfor
3155
3156 .for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
3157 ${_lib}__L: .PHONY .MAKE
3158 .if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib})
3159         ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
3160                 cd ${.CURDIR}/${_lib}; \
3161                 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
3162                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
3163                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
3164 .endif
3165 .endfor
3166
3167 _prereq_libs: ${_prereq_libs:S/$/__PL/}
3168 _startup_libs: ${_startup_libs:S/$/__L/}
3169 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
3170 _generic_libs: ${_generic_libs:S/$/__L/}
3171
3172 # Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
3173 # 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
3174 # that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
3175 # or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
3176 # parallel.  This is safe for the world stage of buildworld though since it has
3177 # already built libraries in a proper order and installed includes into
3178 # WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
3179 # avoid trashing a system if it crashes mid-install.
3180 .if !make(all) || defined(_PARALLEL_SUBDIR_OK)
3181 SUBDIR_PARALLEL=
3182 .endif
3183
3184 .include <bsd.subdir.mk>
3185
3186 .if make(check-old) || make(check-old-dirs) || \
3187     make(check-old-files) || make(check-old-libs) || \
3188     make(delete-old) || make(delete-old-dirs) || \
3189     make(delete-old-files) || make(delete-old-libs) || \
3190     make(list-old-dirs) || make(list-old-files) || make(list-old-libs)
3191
3192 #
3193 # check for / delete old files section
3194 #
3195
3196 .include "ObsoleteFiles.inc"
3197
3198 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
3199 else you can not start such an application. Consult UPDATING for more \
3200 information regarding how to cope with the removal/revision bump of a \
3201 specific library."
3202
3203 .if !defined(BATCH_DELETE_OLD_FILES)
3204 RM_I=-i
3205 .else
3206 RM_I=-fv
3207 .endif
3208
3209 list-old-files: .PHONY
3210         @cd ${.CURDIR}; \
3211         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3212             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" \
3213             -V "OLD_FILES:Mlib/*.so.*:S,^lib,usr/lib32," \
3214             -V "OLD_FILES:Musr/lib/*:S,^usr/lib,usr/lib32," | xargs -n1 | sort
3215
3216 delete-old-files: .PHONY
3217         @echo ">>> Removing old files (only deletes safe to delete libs)"
3218 # Ask for every old file if the user really wants to remove it.
3219 # It's annoying, but better safe than sorry.
3220 # NB: We cannot pass the list of OLD_FILES as a parameter because the
3221 # argument list will get too long. Using .for/.endfor make "loops" will make
3222 # the Makefile parser segfault.
3223         @exec 3<&0; \
3224         cd ${.CURDIR}; \
3225         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \
3226         while read file; do \
3227                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3228                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
3229                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
3230                 fi; \
3231                 for ext in debug symbols; do \
3232                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
3233                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3234                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
3235                               <&3; \
3236                   fi; \
3237                 done; \
3238         done
3239 # Remove catpages without corresponding manpages.
3240         @exec 3<&0; \
3241         find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | sort | \
3242         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
3243         while read catpage; do \
3244                 read manpage; \
3245                 if [ ! -e "$${manpage}" ]; then \
3246                         rm ${RM_I} $${catpage} <&3; \
3247                 fi; \
3248         done
3249         @echo ">>> Old files removed"
3250
3251 check-old-files: .PHONY
3252         @echo ">>> Checking for old files"
3253         @cd ${.CURDIR}; \
3254         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \
3255         while read file; do \
3256                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3257                         echo "${DESTDIR}/$${file}"; \
3258                 fi; \
3259                 for ext in debug symbols; do \
3260                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3261                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
3262                   fi; \
3263                 done; \
3264         done
3265 # Check for catpages without corresponding manpages.
3266         @find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \
3267         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
3268         while read catpage; do \
3269                 read manpage; \
3270                 if [ ! -e "$${manpage}" ]; then \
3271                         echo $${catpage}; \
3272                 fi; \
3273         done | sort
3274
3275 list-old-libs: .PHONY
3276         @cd ${.CURDIR}; \
3277         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3278             -V OLD_LIBS -V MOVED_LIBS -V "OLD_LIBS:Mlib/*:S,^lib,usr/lib32," \
3279             -V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib32," \
3280             -V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib32," | \
3281             xargs -n1 | sort
3282
3283 delete-old-libs: .PHONY
3284         @echo ">>> Removing old libraries"
3285         @echo "${OLD_LIBS_MESSAGE}" | fmt
3286         @exec 3<&0; \
3287         cd ${.CURDIR}; \
3288         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \
3289         while read file; do \
3290                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3291                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
3292                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
3293                 fi; \
3294                 for ext in debug symbols; do \
3295                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
3296                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3297                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
3298                               <&3; \
3299                   fi; \
3300                 done; \
3301         done
3302         @echo ">>> Old libraries removed"
3303
3304 check-old-libs: .PHONY
3305         @echo ">>> Checking for old libraries"
3306         @cd ${.CURDIR}; \
3307         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \
3308         while read file; do \
3309                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3310                         echo "${DESTDIR}/$${file}"; \
3311                 fi; \
3312                 for ext in debug symbols; do \
3313                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3314                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
3315                   fi; \
3316                 done; \
3317         done
3318
3319 list-old-dirs: .PHONY
3320         @cd ${.CURDIR}; \
3321         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3322             -V OLD_DIRS | xargs -n1 | sort -r
3323
3324 delete-old-dirs: .PHONY
3325         @echo ">>> Removing old directories"
3326         @cd ${.CURDIR}; \
3327         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \
3328         while read dir; do \
3329                 if [ -d "${DESTDIR}/$${dir}" ]; then \
3330                         rmdir -v "${DESTDIR}/$${dir}" || true; \
3331                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
3332                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
3333                 fi; \
3334                 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3335                         rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \
3336                 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3337                         echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
3338                 fi; \
3339         done
3340         @echo ">>> Old directories removed"
3341
3342 check-old-dirs: .PHONY
3343         @echo ">>> Checking for old directories"
3344         @cd ${.CURDIR}; \
3345         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \
3346         while read dir; do \
3347                 if [ -d "${DESTDIR}/$${dir}" ]; then \
3348                         echo "${DESTDIR}/$${dir}"; \
3349                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
3350                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
3351                 fi; \
3352                 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3353                         echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \
3354                 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3355                         echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
3356                 fi; \
3357         done
3358
3359 delete-old: delete-old-files delete-old-dirs .PHONY
3360         @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
3361
3362 check-old: check-old-files check-old-libs check-old-dirs .PHONY
3363         @echo "To remove old files and directories run '${MAKE_CMD} delete-old'."
3364         @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
3365
3366 .endif
3367
3368 #
3369 # showconfig - show build configuration.
3370 #
3371 showconfig: .PHONY
3372         @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \
3373           ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u
3374
3375 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
3376 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
3377
3378 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
3379 .if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF})
3380 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
3381         '${KERNCONFDIR}/${KERNCONF}' ; echo
3382 .endif
3383 .endif
3384
3385 .endif
3386
3387 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
3388 DTBOUTPUTPATH= ${.CURDIR}
3389 .endif
3390
3391 #
3392 # Build 'standalone' Device Tree Blob
3393 #
3394 builddtb: .PHONY
3395         @PATH=${TMPPATH} MACHINE=${TARGET} \
3396         sh ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
3397             "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
3398
3399 ###############
3400
3401 # cleanworld
3402 # In the following, the first 'rm' in a series will usually remove all
3403 # files and directories.  If it does not, then there are probably some
3404 # files with file flags set, so this unsets them and tries the 'rm' a
3405 # second time.  There are situations where this target will be cleaning
3406 # some directories via more than one method, but that duplication is
3407 # needed to correctly handle all the possible situations.  Removing all
3408 # files without file flags set in the first 'rm' instance saves time,
3409 # because 'chflags' will need to operate on fewer files afterwards.
3410 #
3411 # It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
3412 # created by bsd.obj.mk, except that we don't want to .include that file
3413 # in this makefile.  We don't do a cleandir walk if MK_AUTO_OBJ is yes
3414 # since it is not possible for files to land in the wrong place.
3415 #
3416 .if make(cleanworld)
3417 BW_CANONICALOBJDIR:=${OBJTOP}/
3418 .elif make(cleanuniverse)
3419 BW_CANONICALOBJDIR:=${OBJROOT}
3420 .if ${MK_UNIFIED_OBJDIR} == "no"
3421 .error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled.
3422 .endif
3423 .endif
3424 cleanworld cleanuniverse: .PHONY
3425 .if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \
3426     ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA}
3427         -rm -rf ${BW_CANONICALOBJDIR}*
3428         -chflags -R 0 ${BW_CANONICALOBJDIR}
3429         rm -rf ${BW_CANONICALOBJDIR}*
3430 .endif
3431 .if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \
3432     (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA})
3433 .if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
3434         #   To be safe in this case, fall back to a 'make cleandir'
3435         ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
3436 .endif
3437 .endif
3438
3439 .if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
3440 XDEV_CPUTYPE?=${CPUTYPE}
3441 .else
3442 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
3443 .endif
3444
3445 NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
3446         MK_MAN=no MK_NLS=no MK_PROFILE=no \
3447         MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WERROR=no \
3448         TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
3449         CPUTYPE=${XDEV_CPUTYPE}
3450
3451 XDDIR=${TARGET_ARCH}-freebsd
3452 XDTP?=/usr/${XDDIR}
3453 .if ${XDTP:N/*}
3454 .error XDTP variable should be an absolute path
3455 .endif
3456
3457 CDBOBJROOT=     ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/
3458 CDBOBJTOP=      ${CDBOBJROOT}${XDDIR}
3459 CDBENV= \
3460         INSTALL="sh ${.CURDIR}/tools/install.sh"
3461 CDENV= ${CDBENV} \
3462         TOOLS_PREFIX=${XDTP}
3463 CDMAKEARGS= \
3464         OBJTOP=${CDBOBJTOP:Q} \
3465         OBJROOT=${CDBOBJROOT:Q}
3466 CD2MAKEARGS= ${CDMAKEARGS}
3467
3468 .if ${WANT_COMPILER_TYPE} == gcc || \
3469     (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
3470 # GCC requires -isystem and -L when using a cross-compiler.  --sysroot
3471 # won't set header path and -L is used to ensure the base library path
3472 # is added before the port PREFIX library path.
3473 CD2CFLAGS+=     -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib
3474 # GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
3475 # combined with --sysroot.
3476 CD2CFLAGS+=     -B${XDDESTDIR}/usr/lib
3477 # Force using libc++ for external GCC.
3478 .if defined(X_COMPILER_TYPE) && \
3479     ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800
3480 CD2CXXFLAGS+=   -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \
3481                 -nostdinc++
3482 .endif
3483 .endif
3484 CD2CFLAGS+=     --sysroot=${XDDESTDIR}/
3485 CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \
3486         CPP="${CPP} ${CD2CFLAGS}" \
3487         MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
3488
3489 CDTMP=  ${OBJTOP}/${XDDIR}/tmp
3490 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${CDMAKEARGS} ${NOFUN}
3491 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} \
3492         ${MAKE} ${CD2MAKEARGS} ${NOFUN}
3493 .if ${MK_META_MODE} != "no"
3494 # Don't rebuild build-tools targets during normal build.
3495 CD2MAKE+=       BUILD_TOOLS_META=.NOMETA
3496 .endif
3497 XDDESTDIR=${DESTDIR}${XDTP}
3498
3499 .ORDER: xdev-build xdev-install xdev-links
3500 xdev: xdev-build xdev-install .PHONY
3501
3502 .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
3503 xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY
3504
3505 _xb-worldtmp: .PHONY
3506         mkdir -p ${CDTMP}/usr
3507         ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
3508             -p ${CDTMP}/usr >/dev/null
3509
3510 _xb-bootstrap-tools: .PHONY
3511 .for _tool in \
3512     ${_clang_tblgen} \
3513     ${_yacc}
3514         ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
3515         cd ${.CURDIR}/${_tool}; \
3516         if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
3517         ${CDMAKE} DIRPRFX=${_tool}/ all; \
3518         ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
3519 .endfor
3520
3521 _xb-build-tools: .PHONY
3522         ${_+_}@cd ${.CURDIR}; \
3523         ${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools
3524
3525 XDEVDIRS= \
3526     ${_clang_libs} \
3527     ${_lld} \
3528     ${_elftctools} \
3529     usr.bin/ar \
3530     ${_clang}
3531
3532 _xb-cross-tools: .PHONY
3533 .for _tool in ${XDEVDIRS}
3534         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \
3535         cd ${.CURDIR}/${_tool}; \
3536         if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
3537         ${CDMAKE} DIRPRFX=${_tool}/ all
3538 .endfor
3539
3540 _xi-mtree: .PHONY
3541         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
3542         mkdir -p ${XDDESTDIR}
3543         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \
3544             -p ${XDDESTDIR} >/dev/null
3545         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
3546             -p ${XDDESTDIR}/usr >/dev/null
3547         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
3548             -p ${XDDESTDIR}/usr/include >/dev/null
3549 .if defined(_LIBCOMPAT)
3550         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
3551             -p ${XDDESTDIR}/usr >/dev/null
3552 .endif
3553 .if ${MK_TESTS} != "no"
3554         mkdir -p ${XDDESTDIR}${TESTSBASE}
3555         ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
3556             -p ${XDDESTDIR}${TESTSBASE} >/dev/null
3557 .endif
3558
3559 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
3560 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY
3561
3562 _xi-cross-tools: .PHONY
3563         @echo "_xi-cross-tools"
3564 .for _tool in ${XDEVDIRS}
3565         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
3566         cd ${.CURDIR}/${_tool}; \
3567         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
3568 .endfor
3569
3570 _xi-includes: .PHONY
3571 .if !defined(NO_OBJWALK)
3572         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \
3573                 DESTDIR=${XDDESTDIR}
3574 .endif
3575         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
3576                 DESTDIR=${XDDESTDIR}
3577
3578 _xi-libraries: .PHONY
3579         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
3580                 DESTDIR=${XDDESTDIR}
3581
3582 xdev-links: .PHONY
3583         ${_+_}cd ${XDDESTDIR}/usr/bin; \
3584         mkdir -p ../../../../usr/bin; \
3585                 for i in *; do \
3586                         ln -sf ../../${XDTP}/usr/bin/$$i \
3587                             ../../../../usr/bin/${XDDIR}-$$i; \
3588                         ln -sf ../../${XDTP}/usr/bin/$$i \
3589                             ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \
3590                 done