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