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