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