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