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