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