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