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