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