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