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