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