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