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