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