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