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