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