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