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