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