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