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