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