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