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