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