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