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