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