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