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