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