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