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