Fix native-xtools breakage when building a gcc enabled target on a clang
[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 .endif
1268
1269 .if ${MK_VT} != "no"
1270 _vtfontcvt=     usr.bin/vtfontcvt
1271 .endif
1272
1273 .if ${BOOTSTRAPPING} < 900002
1274 _sed=           usr.bin/sed
1275 .endif
1276
1277 .if ${BOOTSTRAPPING} < 1000002
1278 _m4=            lib/libohash \
1279                 usr.bin/m4
1280
1281 ${_bt}-usr.bin/m4: ${_bt}-lib/libohash
1282 .endif
1283
1284 .if ${BOOTSTRAPPING} < 1000026
1285 _nmtree=        lib/libnetbsd \
1286                 usr.sbin/nmtree
1287
1288 ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1289 .endif
1290
1291 .if ${BOOTSTRAPPING} < 1000027
1292 _cat=           bin/cat
1293 .endif
1294
1295 .if ${BOOTSTRAPPING} < 1000033
1296 _lex=           usr.bin/lex
1297 .endif
1298
1299 .if ${BOOTSTRAPPING} < 1001507
1300 _crunch=        usr.sbin/crunch
1301 .endif
1302
1303 .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1304 _awk=           usr.bin/awk
1305 .endif
1306
1307 _yacc=          lib/liby \
1308                 usr.bin/yacc
1309
1310 ${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1311
1312 .if ${MK_BSNMP} != "no"
1313 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
1314 .endif
1315
1316 # We need to build tblgen when we're building clang either as
1317 # the bootstrap compiler, or as the part of the normal build.
1318 .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no"
1319 _clang_tblgen= \
1320         lib/clang/libllvmsupport \
1321         lib/clang/libllvmtablegen \
1322         usr.bin/clang/tblgen \
1323         usr.bin/clang/clang-tblgen
1324
1325 ${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1326 ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1327 .endif
1328
1329 # ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
1330 # dtrace tools are required for older bootstrap env and cross-build
1331 # pre libdwarf
1332 .if ${BOOTSTRAPPING} < 1100006 || (${MACHINE} != ${TARGET} || \
1333     ${MACHINE_ARCH} != ${TARGET_ARCH})
1334 _elftoolchain_libs= lib/libelf lib/libdwarf 
1335 .if ${MK_CDDL} != "no"
1336 _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf cddl/usr.bin/ctfconvert \
1337     cddl/usr.bin/ctfmerge
1338
1339 ${_bt}-cddl/usr.bin/ctfconvert: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf
1340 ${_bt}-cddl/usr.bin/ctfmerge: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf
1341 .endif
1342 .endif
1343
1344 # Default to building the GPL DTC, but build the BSDL one if users explicitly
1345 # request it.
1346 _dtc= usr.bin/dtc
1347 .if ${MK_GPL_DTC} != "no"
1348 _dtc= gnu/usr.bin/dtc
1349 .endif
1350
1351 .if ${MK_KERBEROS} != "no"
1352 _kerberos5_bootstrap_tools= \
1353         kerberos5/tools/make-roken \
1354         kerberos5/lib/libroken \
1355         kerberos5/lib/libvers \
1356         kerberos5/tools/asn1_compile \
1357         kerberos5/tools/slc \
1358         usr.bin/compile_et
1359
1360 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1361 .endif
1362
1363 bootstrap-tools: .PHONY
1364
1365 #       Please document (add comment) why something is in 'bootstrap-tools'.
1366 #       Try to bound the building of the bootstrap-tool to just the
1367 #       FreeBSD versions that need the tool built at this stage of the build.
1368 .for _tool in \
1369     ${_clang_tblgen} \
1370     ${_kerberos5_bootstrap_tools} \
1371     ${_elftoolchain_libs} \
1372     ${_dtrace_tools} \
1373     ${_strfile} \
1374     ${_gperf} \
1375     ${_groff} \
1376     ${_dtc} \
1377     ${_awk} \
1378     ${_cat} \
1379     usr.bin/lorder \
1380     usr.bin/makewhatis \
1381     usr.bin/rpcgen \
1382     ${_sed} \
1383     ${_yacc} \
1384     ${_m4} \
1385     ${_lex} \
1386     lib/libmd \
1387     usr.bin/xinstall \
1388     ${_gensnmptree} \
1389     usr.sbin/config \
1390     ${_crunch} \
1391     ${_nmtree} \
1392     ${_vtfontcvt}
1393 ${_bt}-${_tool}: .PHONY .MAKE
1394         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1395                 cd ${.CURDIR}/${_tool} && \
1396                 ${MAKE} DIRPRFX=${_tool}/ obj && \
1397                 ${MAKE} DIRPRFX=${_tool}/ depend && \
1398                 ${MAKE} DIRPRFX=${_tool}/ all && \
1399                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1400
1401 bootstrap-tools: ${_bt}-${_tool}
1402 .endfor
1403
1404 #
1405 # build-tools: Build special purpose build tools
1406 #
1407 .if !defined(NO_SHARE)
1408 _share= share/syscons/scrnmaps
1409 .endif
1410
1411 .if ${MK_GCC} != "no"
1412 _gcc_tools= gnu/usr.bin/cc/cc_tools
1413 .endif
1414
1415 .if ${MK_RESCUE} != "no"
1416 _rescue= rescue/rescue
1417 .endif
1418
1419 build-tools: .MAKE
1420 .for _tool in \
1421     bin/csh \
1422     bin/sh \
1423     ${_rescue} \
1424     ${LOCAL_TOOL_DIRS} \
1425     lib/ncurses/ncurses \
1426     lib/ncurses/ncursesw \
1427     ${_share} \
1428     usr.bin/awk \
1429     lib/libmagic \
1430     usr.bin/mkesdb_static \
1431     usr.bin/mkcsmapper_static \
1432     usr.bin/vi/catalog
1433         ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1434                 cd ${.CURDIR}/${_tool} && \
1435                 ${MAKE} DIRPRFX=${_tool}/ obj && \
1436                 ${MAKE} DIRPRFX=${_tool}/ build-tools
1437 .endfor
1438 .for _tool in \
1439     ${_gcc_tools}
1440         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1441                 cd ${.CURDIR}/${_tool} && \
1442                 ${MAKE} DIRPRFX=${_tool}/ obj && \
1443                 ${MAKE} DIRPRFX=${_tool}/ depend && \
1444                 ${MAKE} DIRPRFX=${_tool}/ all
1445 .endfor
1446
1447 #
1448 # kernel-tools: Build kernel-building tools
1449 #
1450 kernel-tools: .MAKE
1451         mkdir -p ${MAKEOBJDIRPREFIX}/usr
1452         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1453             -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1454
1455 #
1456 # cross-tools: All the tools needed to build the rest of the system after
1457 # we get done with the earlier stages. It is the last set of tools needed
1458 # to begin building the target binaries.
1459 #
1460 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1461 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1462 _btxld=         usr.sbin/btxld
1463 .endif
1464 .endif
1465 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1466 .if ${MK_RESCUE} != "no"
1467 _crunchide=     usr.sbin/crunch/crunchide
1468 .endif
1469 .endif
1470
1471 # If we're given an XAS, don't build binutils.
1472 .if ${XAS:M/*} == ""
1473 .if ${MK_BINUTILS_BOOTSTRAP} != "no"
1474 _binutils=      gnu/usr.bin/binutils
1475 .endif
1476 .if ${MK_ELFTOOLCHAIN_TOOLS} != "no"
1477 _elftctools=    lib/libelftc \
1478                 usr.bin/elfcopy \
1479                 usr.bin/nm \
1480                 usr.bin/size \
1481                 usr.bin/strings
1482 # These are not required by the build, but can be useful for developers who
1483 # cross-build on a FreeBSD 10 host:
1484 _elftctools+=   usr.bin/addr2line
1485 .endif
1486 .elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_TOOLS} != "no"
1487 # If cross-building with an external binutils we still need to build strip for
1488 # the target (for at least crunchide).
1489 _elftctools=    lib/libelftc \
1490                 usr.bin/elfcopy
1491 .endif
1492
1493 # If an full path to an external cross compiler is given, don't build
1494 # a cross compiler.
1495 .if ${XCC:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1496 .if ${MK_CLANG_BOOTSTRAP} != "no"
1497 _clang=         usr.bin/clang
1498 _clang_libs=    lib/clang
1499 .endif
1500 .if ${MK_GCC_BOOTSTRAP} != "no"
1501 _cc=            gnu/usr.bin/cc
1502 .endif
1503 .endif
1504
1505 cross-tools: .MAKE
1506 .for _tool in \
1507     ${_clang_libs} \
1508     ${_clang} \
1509     ${_binutils} \
1510     ${_elftctools} \
1511     ${_cc} \
1512     ${_btxld} \
1513     ${_crunchide} \
1514     sys/boot/usb/tools
1515         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1516                 cd ${.CURDIR}/${_tool} && \
1517                 ${MAKE} DIRPRFX=${_tool}/ obj && \
1518                 ${MAKE} DIRPRFX=${_tool}/ depend && \
1519                 ${MAKE} DIRPRFX=${_tool}/ all && \
1520                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1521 .endfor
1522
1523 NXBENV=         MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1524                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
1525                 VERSION="${VERSION}"
1526 NXBMAKE=        ${NXBENV} ${MAKE} \
1527                 TBLGEN=${OBJTREE}/nxb-bin/usr/bin/tblgen \
1528                 CLANG_TBLGEN=${OBJTREE}/nxb-bin/usr/bin/clang-tblgen \
1529                 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1530                 MK_GDB=no MK_TESTS=no \
1531                 SSP_CFLAGS= \
1532                 MK_HTML=no NO_LINT=yes MK_MAN=no \
1533                 -DNO_PIC MK_PROFILE=no -DNO_SHARED \
1534                 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
1535                 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
1536                 MK_LLDB=no
1537
1538 # native-xtools is the current target for qemu-user cross builds of ports
1539 # via poudriere and the imgact_binmisc kernel module.
1540 # For non-clang enabled targets that are still using the in tree gcc
1541 # we must build a gperf binary for one instance of its Makefiles.  On
1542 # clang-enabled systems, the gperf binary is obsolete.
1543 native-xtools: .MAKE
1544 .if ${MK_GCC_BOOTSTRAP} != "no"
1545         mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
1546         ${_+_}@${ECHODIR} "===> ${_gperf} (obj,depend,all,install)"; \
1547         cd ${.CURDIR}/${_gperf} && \
1548         ${NXBMAKE} DIRPRFX=${_gperf}/ obj && \
1549         ${NXBMAKE} DIRPRFX=${_gperf}/ depend && \
1550         ${NXBMAKE} DIRPRFX=${_gperf}/ all && \
1551         ${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
1552         PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
1553 .endif
1554         mkdir -p ${OBJTREE}/nxb-bin/bin
1555         mkdir -p ${OBJTREE}/nxb-bin/sbin
1556         mkdir -p ${OBJTREE}/nxb-bin/usr
1557         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1558             -p ${OBJTREE}/nxb-bin/usr >/dev/null
1559         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1560             -p ${OBJTREE}/nxb-bin/usr/include >/dev/null
1561 .for _tool in \
1562     bin/cat \
1563     bin/chmod \
1564     bin/cp \
1565     bin/csh \
1566     bin/echo \
1567     bin/expr \
1568     bin/hostname \
1569     bin/ln \
1570     bin/ls \
1571     bin/mkdir \
1572     bin/mv \
1573     bin/ps \
1574     bin/realpath \
1575     bin/rm \
1576     bin/rmdir \
1577     bin/sh \
1578     bin/sleep \
1579     ${_clang_tblgen} \
1580     usr.bin/ar \
1581     ${_binutils} \
1582     ${_elftctools} \
1583     ${_cc} \
1584     ${_gcc_tools} \
1585     ${_clang_libs} \
1586     ${_clang} \
1587     sbin/md5 \
1588     sbin/sysctl \
1589     gnu/usr.bin/diff \
1590     usr.bin/awk \
1591     usr.bin/basename \
1592     usr.bin/bmake \
1593     usr.bin/bzip2 \
1594     usr.bin/cmp \
1595     usr.bin/dirname \
1596     usr.bin/env \
1597     usr.bin/fetch \
1598     usr.bin/find \
1599     usr.bin/grep \
1600     usr.bin/gzip \
1601     usr.bin/id \
1602     usr.bin/lex \
1603     usr.bin/lorder \
1604     usr.bin/mktemp \
1605     usr.bin/mt \
1606     usr.bin/patch \
1607     usr.bin/sed \
1608     usr.bin/sort \
1609     usr.bin/tar \
1610     usr.bin/touch \
1611     usr.bin/tr \
1612     usr.bin/true \
1613     usr.bin/uniq \
1614     usr.bin/unzip \
1615     usr.bin/xargs \
1616     usr.bin/xinstall \
1617     usr.bin/xz \
1618     usr.bin/yacc \
1619     usr.sbin/chown
1620         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1621                 cd ${.CURDIR}/${_tool} && \
1622                 ${NXBMAKE} DIRPRFX=${_tool}/ obj && \
1623                 ${NXBMAKE} DIRPRFX=${_tool}/ depend && \
1624                 ${NXBMAKE} DIRPRFX=${_tool}/ all && \
1625                 ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${OBJTREE}/nxb-bin install
1626 .endfor
1627
1628 #
1629 # hierarchy - ensure that all the needed directories are present
1630 #
1631 hierarchy hier: .MAKE
1632         cd ${.CURDIR}/etc && ${HMAKE} distrib-dirs
1633
1634 #
1635 # libraries - build all libraries, and install them under ${DESTDIR}.
1636 #
1637 # The list of libraries with dependents (${_prebuild_libs}) and their
1638 # interdependencies (__L) are built automatically by the
1639 # ${.CURDIR}/tools/make_libdeps.sh script.
1640 #
1641 libraries: .MAKE
1642         cd ${.CURDIR} && \
1643             ${MAKE} -f Makefile.inc1 _prereq_libs && \
1644             ${MAKE} -f Makefile.inc1 _startup_libs && \
1645             ${MAKE} -f Makefile.inc1 _prebuild_libs && \
1646             ${MAKE} -f Makefile.inc1 _generic_libs
1647
1648 #
1649 # static libgcc.a prerequisite for shared libc
1650 #
1651 _prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1652
1653 # These dependencies are not automatically generated:
1654 #
1655 # gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1656 # all shared libraries for ELF.
1657 #
1658 _startup_libs=  gnu/lib/csu
1659 .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1660 _startup_libs+= lib/csu/${MACHINE_ARCH}-elf
1661 .elif exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
1662 _startup_libs+= lib/csu/${MACHINE_ARCH}
1663 .else
1664 _startup_libs+= lib/csu/${MACHINE_CPUARCH}
1665 .endif
1666 _startup_libs+= gnu/lib/libgcc
1667 _startup_libs+= lib/libcompiler_rt
1668 _startup_libs+= lib/libc
1669 _startup_libs+= lib/libc_nonshared
1670 .if ${MK_LIBCPLUSPLUS} != "no"
1671 _startup_libs+= lib/libcxxrt
1672 .endif
1673
1674 gnu/lib/libgcc__L: lib/libc__L
1675 gnu/lib/libgcc__L: lib/libc_nonshared__L
1676 .if ${MK_LIBCPLUSPLUS} != "no"
1677 lib/libcxxrt__L: gnu/lib/libgcc__L
1678 .endif
1679
1680 _prebuild_libs= ${_kerberos5_lib_libasn1} \
1681                 ${_kerberos5_lib_libhdb} \
1682                 ${_kerberos5_lib_libheimbase} \
1683                 ${_kerberos5_lib_libheimntlm} \
1684                 ${_kerberos5_lib_libheimsqlite} \
1685                 ${_kerberos5_lib_libheimipcc} \
1686                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1687                 ${_kerberos5_lib_libroken} \
1688                 ${_kerberos5_lib_libwind} \
1689                 lib/libbz2 ${_libcom_err} lib/libcrypt \
1690                 lib/libelf lib/libexpat \
1691                 lib/libfigpar \
1692                 ${_lib_libgssapi} \
1693                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
1694                 ${_lib_libcapsicum} \
1695                 lib/ncurses/ncurses lib/ncurses/ncursesw \
1696                 lib/libopie lib/libpam ${_lib_libthr} \
1697                 ${_lib_libradius} lib/libsbuf lib/libtacplus \
1698                 lib/libgeom \
1699                 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1700                 ${_cddl_lib_libuutil} \
1701                 ${_cddl_lib_libavl} \
1702                 ${_cddl_lib_libzfs_core} \
1703                 ${_cddl_lib_libctf} \
1704                 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
1705                 ${_secure_lib_libcrypto} ${_lib_libldns} \
1706                 ${_secure_lib_libssh} ${_secure_lib_libssl} \
1707                 gnu/lib/libdialog
1708 .if ${MK_GNUCXX} != "no"
1709 _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1710 gnu/lib/libstdc++__L: lib/msun__L
1711 gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
1712 .endif
1713
1714 .if ${MK_LIBCPLUSPLUS} != "no"
1715 _prebuild_libs+= lib/libc++
1716 .endif
1717
1718 lib/libgeom__L: lib/libexpat__L
1719
1720 .if ${MK_LIBTHR} != "no"
1721 _lib_libthr=    lib/libthr
1722 .endif
1723
1724 .if ${MK_RADIUS_SUPPORT} != "no"
1725 _lib_libradius= lib/libradius
1726 .endif
1727
1728 .if ${MK_OFED} != "no"
1729 _ofed_lib=      contrib/ofed/usr.lib/
1730 .endif
1731
1732 .if ${MK_CASPER} != "no"
1733 _lib_libcapsicum=lib/libcapsicum
1734 .endif
1735
1736 lib/libcapsicum__L: lib/libnv__L
1737 lib/libpjdlog__L: lib/libutil__L
1738 lib/liblzma__L: lib/libthr__L
1739
1740 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1741 .for _DIR in ${LOCAL_LIB_DIRS}
1742 .if exists(${.CURDIR}/${_DIR}/Makefile)
1743 _generic_libs+= ${_DIR}
1744 .endif
1745 .endfor
1746
1747 lib/libopie__L lib/libtacplus__L: lib/libmd__L
1748
1749 .if ${MK_CDDL} != "no"
1750 _cddl_lib_libumem= cddl/lib/libumem
1751 _cddl_lib_libnvpair= cddl/lib/libnvpair
1752 _cddl_lib_libavl= cddl/lib/libavl
1753 _cddl_lib_libuutil= cddl/lib/libuutil
1754 _cddl_lib_libzfs_core= cddl/lib/libzfs_core
1755 _cddl_lib_libctf= cddl/lib/libctf
1756 _cddl_lib= cddl/lib
1757 cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1758 cddl/lib/libzfs__L: lib/libgeom__L
1759 cddl/lib/libctf__L: lib/libz__L
1760 .endif
1761
1762 .if ${MK_CRYPT} != "no"
1763 .if ${MK_OPENSSL} != "no"
1764 _secure_lib_libcrypto= secure/lib/libcrypto
1765 _secure_lib_libssl= secure/lib/libssl
1766 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1767 .if ${MK_LDNS} != "no"
1768 _lib_libldns= lib/libldns
1769 lib/libldns__L: secure/lib/libcrypto__L
1770 .endif
1771 .if ${MK_OPENSSH} != "no"
1772 _secure_lib_libssh= secure/lib/libssh
1773 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1774 .if ${MK_LDNS} != "no"
1775 secure/lib/libssh__L: lib/libldns__L
1776 .endif
1777 .if ${MK_KERBEROS_SUPPORT} != "no"
1778 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1779     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1780     lib/libmd__L kerberos5/lib/libroken__L
1781 .endif
1782 .endif
1783 .endif
1784 _secure_lib=    secure/lib
1785 .endif
1786
1787 .if ${MK_KERBEROS} != "no"
1788 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1789 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1790     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1791     kerberos5/lib/libwind__L kerberos5/lib/libheimsqlite__L 
1792 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1793     kerberos5/lib/libroken__L lib/libcom_err__L
1794 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1795     secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1796 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1797     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1798     kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1799     kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1800 kerberos5/lib/libroken__L: lib/libcrypt__L
1801 kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1802 kerberos5/lib/libheimbase__L: lib/libthr__L
1803 kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1804 kerberos5/lib/libheimsqlite__L: lib/libthr__L
1805 .endif
1806
1807 .if ${MK_GSSAPI} != "no"
1808 _lib_libgssapi= lib/libgssapi
1809 .endif
1810
1811 .if ${MK_KERBEROS} != "no"
1812 _kerberos5_lib= kerberos5/lib
1813 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
1814 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
1815 _kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1816 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1817 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
1818 _kerberos5_lib_libroken= kerberos5/lib/libroken
1819 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1820 _kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite
1821 _kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1822 _kerberos5_lib_libwind= kerberos5/lib/libwind
1823 _libcom_err= lib/libcom_err
1824 .endif
1825
1826 .if ${MK_NIS} != "no"
1827 _lib_libypclnt= lib/libypclnt
1828 .endif
1829
1830 .if ${MK_OPENSSL} == "no"
1831 lib/libradius__L: lib/libmd__L
1832 .endif
1833
1834 gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
1835
1836 .for _lib in ${_prereq_libs}
1837 ${_lib}__PL: .PHONY .MAKE
1838 .if exists(${.CURDIR}/${_lib})
1839         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1840                 cd ${.CURDIR}/${_lib} && \
1841                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \
1842                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \
1843                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
1844                     DIRPRFX=${_lib}/ all && \
1845                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
1846                     DIRPRFX=${_lib}/ install
1847 .endif
1848 .endfor
1849
1850 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1851 ${_lib}__L: .PHONY .MAKE
1852 .if exists(${.CURDIR}/${_lib})
1853         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1854                 cd ${.CURDIR}/${_lib} && \
1855                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \
1856                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \
1857                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all && \
1858                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
1859 .endif
1860 .endfor
1861
1862 # libpam is special: we need to build static PAM modules before
1863 # static PAM library, and dynamic PAM library before dynamic PAM
1864 # modules.
1865 lib/libpam__L: .PHONY .MAKE
1866         ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1867                 cd ${.CURDIR}/lib/libpam && \
1868                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ obj && \
1869                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ depend && \
1870                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
1871                     -D_NO_LIBPAM_SO_YET all && \
1872                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
1873                     -D_NO_LIBPAM_SO_YET install
1874
1875 _prereq_libs: ${_prereq_libs:S/$/__PL/}
1876 _startup_libs: ${_startup_libs:S/$/__L/}
1877 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1878 _generic_libs: ${_generic_libs:S/$/__L/}
1879
1880 .for __target in all clean cleandepend cleandir depend includes obj
1881 .for entry in ${SUBDIR}
1882 ${entry}.${__target}__D: .PHONY .MAKE
1883         ${_+_}@set -e; if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1884                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1885                 edir=${entry}.${MACHINE_ARCH}; \
1886                 cd ${.CURDIR}/$${edir}; \
1887         else \
1888                 ${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1889                 edir=${entry}; \
1890                 cd ${.CURDIR}/$${edir}; \
1891         fi; \
1892         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1893 .endfor
1894 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1895 .endfor
1896
1897 .include <bsd.subdir.mk>
1898
1899 .if make(check-old) || make(check-old-dirs) || \
1900     make(check-old-files) || make(check-old-libs) || \
1901     make(delete-old) || make(delete-old-dirs) || \
1902     make(delete-old-files) || make(delete-old-libs)
1903
1904 #
1905 # check for / delete old files section
1906 #
1907
1908 .include "ObsoleteFiles.inc"
1909
1910 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1911 else you can not start such an application. Consult UPDATING for more \
1912 information regarding how to cope with the removal/revision bump of a \
1913 specific library."
1914
1915 .if !defined(BATCH_DELETE_OLD_FILES)
1916 RM_I=-i
1917 .else
1918 RM_I=-v
1919 .endif
1920
1921 delete-old-files:
1922         @echo ">>> Removing old files (only deletes safe to delete libs)"
1923 # Ask for every old file if the user really wants to remove it.
1924 # It's annoying, but better safe than sorry.
1925 # NB: We cannot pass the list of OLD_FILES as a parameter because the
1926 # argument list will get too long. Using .for/.endfor make "loops" will make
1927 # the Makefile parser segfault.
1928         @exec 3<&0; \
1929         cd ${.CURDIR}; \
1930         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1931             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1932         while read file; do \
1933                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1934                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1935                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1936                 fi; \
1937         done
1938 # Remove catpages without corresponding manpages.
1939         @exec 3<&0; \
1940         find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1941         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1942         while read catpage; do \
1943                 read manpage; \
1944                 if [ ! -e "$${manpage}" ]; then \
1945                         rm ${RM_I} $${catpage} <&3; \
1946                 fi; \
1947         done
1948         @echo ">>> Old files removed"
1949
1950 check-old-files:
1951         @echo ">>> Checking for old files"
1952         @cd ${.CURDIR}; \
1953         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1954             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1955         while read file; do \
1956                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1957                         echo "${DESTDIR}/$${file}"; \
1958                 fi; \
1959         done
1960 # Check for catpages without corresponding manpages.
1961         @find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1962         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1963         while read catpage; do \
1964                 read manpage; \
1965                 if [ ! -e "$${manpage}" ]; then \
1966                         echo $${catpage}; \
1967                 fi; \
1968         done
1969
1970 delete-old-libs:
1971         @echo ">>> Removing old libraries"
1972         @echo "${OLD_LIBS_MESSAGE}" | fmt
1973         @exec 3<&0; \
1974         cd ${.CURDIR}; \
1975         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1976             -V OLD_LIBS | xargs -n1 | \
1977         while read file; do \
1978                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1979                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1980                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1981                 fi; \
1982                 for ext in debug symbols; do \
1983                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
1984                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1985                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
1986                               <&3; \
1987                   fi; \
1988                 done; \
1989         done
1990         @echo ">>> Old libraries removed"
1991
1992 check-old-libs:
1993         @echo ">>> Checking for old libraries"
1994         @cd ${.CURDIR}; \
1995         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1996             -V OLD_LIBS | xargs -n1 | \
1997         while read file; do \
1998                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1999                         echo "${DESTDIR}/$${file}"; \
2000                 fi; \
2001                 for ext in debug symbols; do \
2002                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2003                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2004                   fi; \
2005                 done; \
2006         done
2007
2008 delete-old-dirs:
2009         @echo ">>> Removing old directories"
2010         @cd ${.CURDIR}; \
2011         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2012             -V OLD_DIRS | xargs -n1 | sort -r | \
2013         while read dir; do \
2014                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2015                         rmdir -v "${DESTDIR}/$${dir}" || true; \
2016                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2017                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2018                 fi; \
2019         done
2020         @echo ">>> Old directories removed"
2021
2022 check-old-dirs:
2023         @echo ">>> Checking for old directories"
2024         @cd ${.CURDIR}; \
2025         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2026             -V OLD_DIRS | xargs -n1 | \
2027         while read dir; do \
2028                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2029                         echo "${DESTDIR}/$${dir}"; \
2030                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2031                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2032                 fi; \
2033         done
2034
2035 delete-old: delete-old-files delete-old-dirs
2036         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2037
2038 check-old: check-old-files check-old-libs check-old-dirs
2039         @echo "To remove old files and directories run '${MAKE} delete-old'."
2040         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2041
2042 .endif
2043
2044 #
2045 # showconfig - show build configuration.
2046 #
2047 showconfig:
2048         @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1; \
2049           ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1) 2>&1 | grep ^MK_ | sort -u
2050
2051 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2052 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2053
2054 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2055 .if exists(${KERNCONFDIR}/${KERNCONF})
2056 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2057         '${KERNCONFDIR}/${KERNCONF}' ; echo
2058 .endif
2059 .endif
2060
2061 .endif
2062
2063 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2064 DTBOUTPUTPATH= ${.CURDIR}
2065 .endif
2066
2067 #
2068 # Build 'standalone' Device Tree Blob
2069 #
2070 builddtb:
2071         @PATH=${TMPPATH} MACHINE=${TARGET} \
2072         ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2073             "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2074
2075 ###############
2076
2077 .if defined(TARGET) && defined(TARGET_ARCH)
2078
2079 .if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2080 XDEV_CPUTYPE?=${CPUTYPE}
2081 .else
2082 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2083 .endif
2084
2085 NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2086         MK_MAN=no MK_NLS=no MK_PROFILE=no \
2087         MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2088         TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2089         CPUTYPE=${XDEV_CPUTYPE}
2090
2091 XDDIR=${TARGET_ARCH}-freebsd
2092 XDTP?=/usr/${XDDIR}
2093 .if ${XDTP:N/*}
2094 .error XDTP variable should be an absolute path
2095 .endif
2096
2097 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2098         INSTALL="sh ${.CURDIR}/tools/install.sh"
2099 CDENV= ${CDBENV} \
2100         _SHLIBDIRPREFIX=${XDDESTDIR} \
2101         TOOLS_PREFIX=${XDTP}
2102 CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2103         --sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2104         -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2105 CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2106         CPP="${CPP} ${CD2CFLAGS}" \
2107         MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2108
2109 CDTMP=  ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2110 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2111 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2112 XDDESTDIR=${DESTDIR}/${XDTP}
2113 .if !defined(OSREL)
2114 OSREL!= uname -r | sed -e 's/[-(].*//'
2115 .endif
2116
2117 .ORDER: xdev-build xdev-install xdev-links
2118 xdev: xdev-build xdev-install
2119
2120 .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2121 xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2122
2123 _xb-worldtmp:
2124         mkdir -p ${CDTMP}/usr
2125         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2126             -p ${CDTMP}/usr >/dev/null
2127
2128 _xb-bootstrap-tools:
2129 .for _tool in \
2130     ${_clang_tblgen} \
2131     ${_gperf}
2132         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
2133         cd ${.CURDIR}/${_tool} && \
2134         ${CDMAKE} DIRPRFX=${_tool}/ obj && \
2135         ${CDMAKE} DIRPRFX=${_tool}/ depend && \
2136         ${CDMAKE} DIRPRFX=${_tool}/ all && \
2137         ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2138 .endfor
2139
2140 _xb-build-tools:
2141         ${_+_}@cd ${.CURDIR}; \
2142         ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2143
2144 _xb-cross-tools:
2145 .for _tool in \
2146     ${_binutils} \
2147     ${_elftctools} \
2148     usr.bin/ar \
2149     ${_clang_libs} \
2150     ${_clang} \
2151     ${_cc}
2152         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
2153         cd ${.CURDIR}/${_tool} && \
2154         ${CDMAKE} DIRPRFX=${_tool}/ obj && \
2155         ${CDMAKE} DIRPRFX=${_tool}/ depend && \
2156         ${CDMAKE} DIRPRFX=${_tool}/ all
2157 .endfor
2158
2159 _xi-mtree:
2160         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2161         mkdir -p ${XDDESTDIR}
2162         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2163             -p ${XDDESTDIR} >/dev/null
2164         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2165             -p ${XDDESTDIR}/usr >/dev/null
2166         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2167             -p ${XDDESTDIR}/usr/include >/dev/null
2168 .if ${MK_TESTS} != "no"
2169         mkdir -p ${XDDESTDIR}${TESTSBASE}
2170         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2171             -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2172 .endif
2173
2174 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2175 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2176
2177 _xi-cross-tools:
2178         @echo "_xi-cross-tools"
2179 .for _tool in \
2180     ${_binutils} \
2181     ${_elftctools} \
2182     usr.bin/ar \
2183     ${_clang_libs} \
2184     ${_clang} \
2185     ${_cc}
2186         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2187         cd ${.CURDIR}/${_tool}; \
2188         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2189 .endfor
2190
2191 _xi-includes:
2192         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
2193                 DESTDIR=${XDDESTDIR}
2194
2195 _xi-libraries:
2196         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2197                 DESTDIR=${XDDESTDIR}
2198
2199 xdev-links:
2200         ${_+_}cd ${XDDESTDIR}/usr/bin; \
2201         mkdir -p ../../../../usr/bin; \
2202                 for i in *; do \
2203                         ln -sf ../../${XDTP}/usr/bin/$$i \
2204                             ../../../../usr/bin/${XDDIR}-$$i; \
2205                         ln -sf ../../${XDTP}/usr/bin/$$i \
2206                             ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2207                 done
2208 .else
2209 xdev xdev-build xdev-install xdev-links:
2210         @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2211 .endif