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