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