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