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