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