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