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