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