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
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."
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}"
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.
71 .if !empty(SUBDIR_OVERRIDE)
72 SUBDIR= ${SUBDIR_OVERRIDE}
76 # Ensure libraries are installed before progressing.
80 .if ${MK_CDDL} != "no"
84 .if ${MK_KERBEROS} != "no"
87 .if ${MK_RESCUE} != "no"
91 .if ${MK_CRYPT} != "no"
94 .if !defined(NO_SHARE)
97 SUBDIR+=sys usr.bin usr.sbin
98 .if ${MK_TESTS} != "no"
101 .if ${MK_OFED} != "no"
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)
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}*}
118 .for _DIR in ${LOCAL_LIB_DIRS}
119 .if empty(_REDUNDENT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)
122 .warning ${_DIR} not added to SUBDIR list. See UPDATING 20141121.
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
135 .endif # !empty(SUBDIR_OVERRIDE)
138 .warning NOCLEAN option is deprecated. Use NO_CLEAN instead.
141 .if defined(NO_CLEANDIR)
142 CLEANDIR= clean cleandepend
148 PACKAGEDIR?= ${DESTDIR}/${DISTDIR}
150 .if empty(SHELL:M*csh*)
151 BUILDENV_SHELL?=${SHELL}
153 BUILDENV_SHELL?=/bin/sh
156 SVN?= /usr/local/bin/svn
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
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}
180 KNOWN_ARCHES?= aarch64/arm64 \
199 .if ${TARGET} == ${TARGET_ARCH}
202 _t= ${TARGET_ARCH}/${TARGET}
205 .if empty(KNOWN_ARCHES:M${_t})
206 .error Unknown target ${TARGET_ARCH}:${TARGET}.
210 .if ${TARGET} == ${MACHINE}
211 TARGET_CPUTYPE?=${CPUTYPE}
216 .if !empty(TARGET_CPUTYPE)
217 _TARGET_CPUTYPE=${TARGET_CPUTYPE}
219 _TARGET_CPUTYPE=dummy
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 ?=.
230 BUILD_ARCH!= uname -p
231 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
232 .error To cross-build, set TARGET_ARCH.
235 .if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
236 OBJTREE= ${MAKEOBJDIRPREFIX}
238 OBJTREE= ${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
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
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.
289 # Common environment for world related stages
290 CROSSENV+= MAKEOBJDIRPREFIX=${OBJTREE} \
291 MACHINE_ARCH=${TARGET_ARCH} \
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
299 .if defined(TARGET_CFLAGS)
300 CROSSENV+= ${TARGET_CFLAGS}
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
310 BOOTSTRAPPING=${OSRELDATE} \
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 \
319 BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \
320 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
324 TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \
325 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
326 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
328 BOOTSTRAPPING=${OSRELDATE} \
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
336 XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
337 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
338 MK_GDB=no MK_TESTS=no
341 KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \
342 PATH=${BPATH}:${PATH} \
344 KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \
345 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
347 BOOTSTRAPPING=${OSRELDATE} \
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
354 WMAKEENV= ${CROSSENV} \
356 INSTALL="sh ${.CURDIR}/tools/install.sh" \
360 HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
362 HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
365 .if defined(CROSS_TOOLCHAIN_PREFIX)
366 CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
367 CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
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.
384 XCOMPILERS= CC CXX CPP
385 .for COMPILER in ${XCOMPILERS}
386 .if defined(CROSS_COMPILER_PREFIX)
387 X${COMPILER}?= ${CROSS_COMPILER_PREFIX}${${COMPILER}}
389 X${COMPILER}?= ${${COMPILER}}
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}}
398 X${BINUTIL}?= ${${BINUTIL}}
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} \
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}
418 BFLAGS+= -B${WORLDTMP}/usr/bin
420 .if ${TARGET} == "arm"
421 .if ${TARGET_ARCH:M*hf*} != ""
422 TARGET_ABI= gnueabihf
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
436 TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd11.0
437 XCFLAGS+= -target ${TARGET_TRIPLE}
439 XCFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS}
440 XCXXFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS}
442 .if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
443 BFLAGS+= -B${CROSS_BINUTILS_PREFIX}
445 XCXXFLAGS+= ${BFLAGS}
449 WMAKE= ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP}
451 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
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
460 LIB32CPUFLAGS= -march=${TARGET_CPUTYPE}
462 LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \
463 MACHINE_CPU="i686 mmx sse sse2"
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
473 LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE}
475 LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc
477 LD="${XLD} -m elf32ppc_fbsd" \
478 OBJCOPY="${XOBJCOPY}"
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}
490 # Yes, the flags are redundant.
491 LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${LIB32_OBJTREE} \
492 _LDSCRIPTROOT=${LIB32TMP} \
493 INSTALL="sh ${.CURDIR}/tools/install.sh" \
496 SHLIBDIR=/usr/lib32 \
497 DTRACE="${DTRACE} -32"
498 LIB32WMAKEFLAGS+= CC="${XCC} ${LIB32FLAGS}" \
499 CXX="${XCXX} ${LIB32FLAGS}" \
500 DESTDIR=${LIB32TMP} \
508 LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \
510 LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} \
511 MK_TOOLCHAIN=no ${IMAKE_INSTALL}
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
523 IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP}
525 .if defined(DB_FROM_SRC)
526 INSTALLFLAGS+= -N ${.CURDIR}/etc
527 MTREEFLAGS+= -N ${.CURDIR}/etc
529 _INSTALL_DDIR= ${DESTDIR}/${DISTDIR}
530 INSTALL_DDIR= ${_INSTALL_DDIR:S://:/:g:C:/$::}
532 METALOG?= ${DESTDIR}/${DISTDIR}/METALOG
533 IMAKE+= -DNO_ROOT METALOG=${METALOG}
534 INSTALLFLAGS+= -U -M ${METALOG} -D ${INSTALL_DDIR}
537 .if defined(DB_FROM_SRC) || defined(NO_ROOT)
538 IMAKE_INSTALL= INSTALL="install ${INSTALLFLAGS}"
539 IMAKE_MTREE= MTREE_CMD="mtree ${MTREEFLAGS}"
543 KMAKEENV= ${WMAKEENV}
544 KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
549 # Attempt to rebuild the entire system, with reasonable chance of
550 # success, regardless of how old your existing system is.
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.
557 @echo "*** Error: path to source tree contains a comma ','"
562 @echo "--------------------------------------------------------------"
563 @echo ">>> Rebuilding the temporary build tree"
564 @echo "--------------------------------------------------------------"
565 .if !defined(NO_CLEAN)
567 .if defined(LIB32TMP)
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
578 lib usr legacy/bin legacy/usr
579 mkdir -p ${WORLDTMP}/${_dir}
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
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
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
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
619 .for _mtree in ${LOCAL_MTREE}
620 mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
624 @echo "--------------------------------------------------------------"
625 @echo ">>> stage 1.1: legacy release compatibility shims"
626 @echo "--------------------------------------------------------------"
627 ${_+_}cd ${.CURDIR}; ${BMAKE} legacy
630 @echo "--------------------------------------------------------------"
631 @echo ">>> stage 1.2: bootstrap tools"
632 @echo "--------------------------------------------------------------"
633 ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
635 .if !defined(NO_CLEAN)
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}
647 @echo "--------------------------------------------------------------"
648 @echo ">>> stage 2.2: rebuilding the object tree"
649 @echo "--------------------------------------------------------------"
650 ${_+_}cd ${.CURDIR}; ${WMAKE} obj
653 @echo "--------------------------------------------------------------"
654 @echo ">>> stage 2.3: build tools"
655 @echo "--------------------------------------------------------------"
656 ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
659 @echo "--------------------------------------------------------------"
660 @echo ">>> stage 3: cross tools"
661 @echo "--------------------------------------------------------------"
662 ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
663 ${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
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 \
673 .if !empty(SUBDIR_OVERRIDE) && make(buildworld)
674 ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes
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
686 @echo "--------------------------------------------------------------"
687 @echo ">>> stage 4.3: make dependencies"
688 @echo "--------------------------------------------------------------"
689 ${_+_}cd ${.CURDIR}; ${WMAKE} depend
692 @echo "--------------------------------------------------------------"
693 @echo ">>> stage 4.4: building everything"
694 @echo "--------------------------------------------------------------"
695 ${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all
696 .if defined(LIB32TMP)
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
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}
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}
727 .if ${MK_KERBEROS} != "no"
728 ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t}
731 .for _dir in usr.bin/lex/lib
732 ${_+_}cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj
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 \
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}
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$//}
756 ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
757 .if ${MK_CRYPT} != "no"
758 ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
760 .if ${MK_KERBEROS} != "no"
761 ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
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} \
770 WMAKE_TGTS+= _worldtmp _legacy
771 .if empty(SUBDIR_OVERRIDE)
772 WMAKE_TGTS+= _bootstrap-tools
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)
780 buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
781 .ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
784 @echo "--------------------------------------------------------------"
785 @echo ">>> World build started on `LC_ALL=C date`"
786 @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.
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
808 BUILDENV_DIR?= ${.CURDIR}
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}
814 @cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \
817 TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
818 toolchain: ${TOOLCHAIN_TGTS}
819 kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
824 # Checks to be sure system is ready for installworld/installkernel.
826 installcheck: _installcheck_world _installcheck_kernel
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} || \
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!"; \
847 .if !defined(DB_FROM_SRC)
849 # Check for missing UIDs/GIDs.
851 CHECK_UIDS= auditdistd
853 .if ${MK_SENDMAIL} != "no"
859 CHECK_GIDS+= proxy authpf
861 .if ${MK_UNBOUND} != "no"
865 _installcheck_world: __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."; \
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."; \
882 # Required install tools to be saved in a scratch dir for safety.
884 .if ${MK_ZONEINFO} != "no"
885 _zoneinfo= zic tzsetup
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} \
894 # Needed for share/man
895 .if ${MK_MAN} != "no"
902 # Distributes everything compiled by a `buildworld'.
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
914 .if ${MK_TESTS} != "no"
915 EXTRA_DISTRIBUTIONS+= tests
919 .if ${MK_DEBUG_FILES} != "no"
920 DEBUG_DISTRIBUTIONS+= base ${EXTRA_DISTRIBUTIONS:S,doc,,:S,tests,,}
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 \
931 echo "Required tool $$prog not found in PATH." >&2; \
935 libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
936 while read line; do \
938 if [ "$$2 $$3" != "not found" ]; then \
941 echo "Required library $$1 not found." >&2; \
945 cp $$libs $$progs ${INSTALLTMP}
946 cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
948 echo "#${MTREE_MAGIC}" > ${METALOG}
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
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
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
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}
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
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
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
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
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
1037 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1038 tar cvf - --exclude usr/lib/debug . | \
1039 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
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
1049 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1050 tar cvLf - usr/lib/debug | \
1051 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
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
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
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 \
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
1112 .if defined(KERNFAST)
1117 # Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1118 .if !defined(KERNCONF) && ${KERNFAST} != "1"
1119 KERNCONF=${KERNFAST}
1122 .if ${TARGET_ARCH} == "powerpc64"
1123 KERNCONF?= GENERIC64
1127 INSTKERNNAME?= kernel
1129 KERNSRCDIR?= ${.CURDIR}/sys
1130 KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf
1131 KRNLOBJDIR= ${OBJTREE}${KERNSRCDIR}
1132 KERNCONFDIR?= ${KRNLCONFDIR}
1136 .if defined(NO_INSTALLKERNEL)
1137 # All of the BUILDKERNELS loops start at index 1.
1138 BUILDKERNELS+= dummy
1140 .for _kernel in ${KERNCONF}
1141 .if exists(${KERNCONFDIR}/${_kernel})
1142 BUILDKERNELS+= ${_kernel}
1143 .if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1144 INSTALLKERNEL= ${_kernel}
1149 ${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
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})."; \
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)
1170 @echo "--------------------------------------------------------------"
1171 @echo ">>> stage 1: configuring the kernel"
1172 @echo "--------------------------------------------------------------"
1173 cd ${KRNLCONFDIR}; \
1175 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1176 -I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1178 .if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1180 @echo "--------------------------------------------------------------"
1181 @echo ">>> stage 2.1: cleaning up the object tree"
1182 @echo "--------------------------------------------------------------"
1183 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1185 .if !defined(NO_KERNELOBJ)
1187 @echo "--------------------------------------------------------------"
1188 @echo ">>> stage 2.2: rebuilding the object tree"
1189 @echo "--------------------------------------------------------------"
1190 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1193 @echo "--------------------------------------------------------------"
1194 @echo ">>> stage 2.3: build tools"
1195 @echo "--------------------------------------------------------------"
1196 ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1197 .if !defined(NO_KERNELDEPEND)
1199 @echo "--------------------------------------------------------------"
1200 @echo ">>> stage 3.1: making dependencies"
1201 @echo "--------------------------------------------------------------"
1202 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
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 "--------------------------------------------------------------"
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."; \
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//}
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//}
1244 distributekernel distributekernel.debug:
1245 .if !defined(NO_INSTALLKERNEL)
1246 .if empty(INSTALLKERNEL)
1247 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1250 mkdir -p ${DESTDIR}/${DISTDIR}
1251 .if defined(NO_ROOT)
1252 echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
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
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
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
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
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
1308 .if !defined(NO_INSTALLKERNEL)
1309 cd ${DESTDIR}/${DISTDIR}/kernel; \
1310 tar cvf - --exclude '*.debug' . | \
1311 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
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
1331 # Build the API documentation with doxygen
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; \
1338 ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1343 # Update the source tree(s), by running svn/svnup to update to the
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 "--------------------------------------------------------------"
1354 .if defined(SVN_UPDATE)
1355 @echo "--------------------------------------------------------------"
1356 @echo ">>> Updating ${.CURDIR} using Subversion"
1357 @echo "--------------------------------------------------------------"
1358 @(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
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
1385 .if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0
1386 @echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \
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
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
1411 .if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1412 _gperf= gnu/usr.bin/gperf
1415 .if ${MK_GROFF} != "no"
1416 _groff= gnu/usr.bin/groff \
1420 .if ${MK_VT} != "no"
1421 _vtfontcvt= usr.bin/vtfontcvt
1424 .if ${BOOTSTRAPPING} < 900002
1428 .if ${BOOTSTRAPPING} < 1000002
1429 _libopenbsd= lib/libopenbsd
1432 ${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd
1435 .if ${BOOTSTRAPPING} < 1000026
1436 _nmtree= lib/libnetbsd \
1439 ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1442 .if ${BOOTSTRAPPING} < 1000027
1446 .if ${BOOTSTRAPPING} < 1000033
1449 ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
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
1459 .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1466 ${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1468 .if ${MK_BSNMP} != "no"
1469 _gensnmptree= usr.sbin/bsnmpd/gensnmptree
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"
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
1485 # Default to building the GPL DTC, but build the BSDL one if users explicitly
1488 .if ${MK_GPL_DTC} != "no"
1489 _dtc= gnu/usr.bin/dtc
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 \
1501 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1504 .if ${MK_MANDOCDB} != "no"
1505 _libopenbsd?= lib/libopenbsd
1506 _makewhatis= lib/libsqlite3 \
1508 ${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd ${_bt}-lib/libsqlite3
1510 _makewhatis=usr.bin/makewhatis
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.
1520 ${_kerberos5_bootstrap_tools} \
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}
1554 # build-tools: Build special purpose build tools
1556 .if !defined(NO_SHARE)
1557 _share= share/syscons/scrnmaps
1560 .if ${MK_GCC} != "no"
1561 _gcc_tools= gnu/usr.bin/cc/cc_tools
1564 .if ${MK_RESCUE} != "no"
1565 # rescue includes programs that have build-tools targets
1566 _rescue=rescue/rescue
1572 ${LOCAL_TOOL_DIRS} \
1573 lib/ncurses/ncurses \
1574 lib/ncurses/ncursesw \
1579 usr.bin/mkesdb_static \
1580 usr.bin/mkcsmapper_static \
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}
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}
1601 # kernel-tools: Build kernel-building 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
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
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
1631 .if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1632 _elftctools= lib/libelftc \
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
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 \
1648 # If an full path to an external cross compiler is given, don't build
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
1655 .if ${MK_GCC_BOOTSTRAP} != "no"
1659 .if ${MK_USB} != "no"
1660 _usb_tools= sys/boot/usb/tools
1663 cross-tools: .MAKE .PHONY
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
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 \
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
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
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
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
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
1835 _prebuild_libs= ${_kerberos5_lib_libasn1} \
1836 ${_kerberos5_lib_libhdb} \
1837 ${_kerberos5_lib_libheimbase} \
1838 ${_kerberos5_lib_libheimntlm} \
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 \
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 \
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} \
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
1869 .if ${MK_LIBCPLUSPLUS} != "no"
1870 _prebuild_libs+= lib/libc++
1873 lib/libgeom__L: lib/libexpat__L
1874 lib/libkvm__L: lib/libelf__L
1876 .if ${MK_LIBTHR} != "no"
1877 _lib_libthr= lib/libthr
1880 .if ${MK_RADIUS_SUPPORT} != "no"
1881 _lib_libradius= lib/libradius
1884 .if ${MK_OFED} != "no"
1885 _ofed_lib= contrib/ofed/usr.lib/
1888 .if ${MK_CASPER} != "no"
1889 _lib_libcapsicum=lib/libcapsicum
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}
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
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
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
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
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
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
1945 _secure_lib= secure/lib
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
1967 lib/libsqlite3__L: lib/libthr__L
1969 .if ${MK_GSSAPI} != "no"
1970 _lib_libgssapi= lib/libgssapi
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
1988 .if ${MK_NIS} != "no"
1989 _lib_libypclnt= lib/libypclnt
1992 .if ${MK_OPENSSL} == "no"
1993 lib/libradius__L: lib/libmd__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
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
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
2034 # libpam is special: we need to build static PAM modules before
2035 # static PAM library, and dynamic PAM library before dynamic PAM
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)
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 \
2082 .if !defined(BATCH_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.
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; \
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}" \
2112 # Remove catpages without corresponding manpages.
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 \
2118 if [ ! -e "$${manpage}" ]; then \
2119 rm ${RM_I} $${catpage} <&3; \
2122 @echo ">>> Old files removed"
2125 @echo ">>> Checking for old files"
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}"; \
2133 for ext in debug symbols; do \
2134 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2135 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
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 \
2144 if [ ! -e "$${manpage}" ]; then \
2150 @echo ">>> Removing old libraries"
2151 @echo "${OLD_LIBS_MESSAGE}" | fmt
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; \
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}" \
2169 @echo ">>> Old libraries removed"
2172 @echo ">>> Checking for old libraries"
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}"; \
2180 for ext in debug symbols; do \
2181 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2182 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2188 @echo ">>> Removing old directories"
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."; \
2199 @echo ">>> Old directories removed"
2202 @echo ">>> Checking for old directories"
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."; \
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'."
2224 # showconfig - show build configuration.
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
2242 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2243 DTBOUTPUTPATH= ${.CURDIR}
2247 # Build 'standalone' Device Tree Blob
2250 @PATH=${TMPPATH} MACHINE=${TARGET} \
2251 ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2252 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
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
2270 BW_CANONICALOBJDIR:=${OBJTREE}${.CURDIR}
2272 .if exists(${BW_CANONICALOBJDIR}/)
2273 -rm -rf ${BW_CANONICALOBJDIR}/*
2274 -chflags -R 0 ${BW_CANONICALOBJDIR}
2275 rm -rf ${BW_CANONICALOBJDIR}/*
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
2282 .if defined(TARGET) && defined(TARGET_ARCH)
2284 .if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2285 XDEV_CPUTYPE?=${CPUTYPE}
2287 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
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
2299 .error XDTP variable should be an absolute path
2302 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2303 INSTALL="sh ${.CURDIR}/tools/install.sh"
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}
2318 OSREL!= uname -r | sed -e 's/[-(].*//'
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
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
2344 _xb-build-tools: .PHONY
2345 ${_+_}@cd ${.CURDIR}; \
2346 ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2348 _xb-cross-tools: .PHONY
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
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
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
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"
2394 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2395 cd ${.CURDIR}/${_tool}; \
2396 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
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}
2408 ${_+_}cd ${XDDESTDIR}/usr/bin; \
2409 mkdir -p ../../../../usr/bin; \
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; \
2417 xdev xdev-build xdev-install xdev-links:
2418 @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"