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