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