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