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 # checkworld - run test suite on installed world
41 # doxygen - build API documentation of the kernel
42 # update - convenient way to update your source tree (eg: svn/svnup)
44 # Standard targets (not defined here) are documented in the makefiles in
45 # /usr/share/mk. These include:
46 # obj depend all install clean cleandepend cleanobj
48 .if !defined(TARGET) || !defined(TARGET_ARCH)
49 .error "Both TARGET and TARGET_ARCH must be defined."
52 LOCALBASE?= /usr/local
54 # Cross toolchain changes must be in effect before bsd.compiler.mk
55 # so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes.
56 .if defined(CROSS_TOOLCHAIN)
57 .include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk"
58 CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}"
60 .include <bsd.compiler.mk> # don't depend on src.opts.mk doing it
61 .include "share/mk/src.opts.mk"
63 # We must do lib/ and libexec/ before bin/ in case of a mid-install error to
64 # keep the users system reasonably usable. For static->dynamic root upgrades,
65 # we don't want to install a dynamic binary without rtld and the needed
66 # libraries. More commonly, for dynamic root, we don't want to install a
67 # binary that requires a newer library version that hasn't been installed yet.
68 # This ordering is not a guarantee though. The only guarantee of a working
69 # system here would require fine-grained ordering of all components based
70 # on their dependencies.
72 .if !empty(SUBDIR_OVERRIDE)
73 SUBDIR= ${SUBDIR_OVERRIDE}
76 .if !defined(NO_ROOT) && (make(installworld) || make(install))
77 # Ensure libraries are installed before progressing.
81 .if ${MK_CDDL} != "no"
85 .if ${MK_KERBEROS} != "no"
88 .if ${MK_RESCUE} != "no"
92 .if ${MK_CRYPT} != "no"
95 .if !defined(NO_SHARE)
98 SUBDIR+=sys usr.bin usr.sbin
99 .if ${MK_TESTS} != "no"
102 .if ${MK_OFED} != "no"
106 # Local directories are last, since it is nice to at least get the base
107 # system rebuilt before you do them.
108 .for _DIR in ${LOCAL_DIRS}
109 .if exists(${.CURDIR}/${_DIR}/Makefile)
113 # Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR
114 # of a LOCAL_DIRS directory. This allows LOCAL_DIRS=foo and
115 # LOCAL_LIB_DIRS=foo/lib to behave as expected.
116 .for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|}
117 _REDUNDENT_LIB_DIRS+= ${LOCAL_LIB_DIRS:M${_DIR}*}
119 .for _DIR in ${LOCAL_LIB_DIRS}
120 .if empty(_REDUNDENT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)
123 .warning ${_DIR} not added to SUBDIR list. See UPDATING 20141121.
127 # We must do etc/ last as it hooks into building the man whatis file
128 # by calling 'makedb' in share/man. This is only relevant for
129 # install/distribute so they build the whatis file after every manpage is
131 .if make(installworld) || make(install)
136 .endif # !empty(SUBDIR_OVERRIDE)
139 .warning NOCLEAN option is deprecated. Use NO_CLEAN instead.
142 .if defined(NO_CLEANDIR)
143 CLEANDIR= clean cleandepend
149 PACKAGEDIR?= ${DESTDIR}/${DISTDIR}
151 .if empty(SHELL:M*csh*)
152 BUILDENV_SHELL?=${SHELL}
154 BUILDENV_SHELL?=/bin/sh
157 SVN?= /usr/local/bin/svn
160 MAKEOBJDIRPREFIX?= /usr/obj
161 .if !defined(OSRELDATE)
162 .if exists(/usr/include/osreldate.h)
163 OSRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
164 /usr/include/osreldate.h
171 # Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION.
172 .if !defined(VERSION) && !make(showconfig)
173 REVISION!= ${MAKE} -C ${SRCDIR}/release -V REVISION
174 BRANCH!= ${MAKE} -C ${SRCDIR}/release -V BRANCH
175 SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
176 ${SRCDIR}/sys/sys/param.h
177 VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
181 KNOWN_ARCHES?= aarch64/arm64 \
200 .if ${TARGET} == ${TARGET_ARCH}
203 _t= ${TARGET_ARCH}/${TARGET}
206 .if empty(KNOWN_ARCHES:M${_t})
207 .error Unknown target ${TARGET_ARCH}:${TARGET}.
211 .if ${TARGET} == ${MACHINE}
212 TARGET_CPUTYPE?=${CPUTYPE}
217 .if !empty(TARGET_CPUTYPE)
218 _TARGET_CPUTYPE=${TARGET_CPUTYPE}
220 _TARGET_CPUTYPE=dummy
222 # Skip for showconfig as it is just wasted time and may invoke auto.obj.mk.
223 .if !make(showconfig)
224 _CPUTYPE!= MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
225 -f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
226 .if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
227 .error CPUTYPE global should be set with ?=.
231 BUILD_ARCH!= uname -p
232 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
233 .error To cross-build, set TARGET_ARCH.
236 .if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
237 OBJTREE= ${MAKEOBJDIRPREFIX}
239 OBJTREE= ${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
241 WORLDTMP= ${OBJTREE}${.CURDIR}/tmp
242 BPATH= ${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin
243 XPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin
244 STRICTTMPPATH= ${BPATH}:${XPATH}
245 TMPPATH= ${STRICTTMPPATH}:${PATH}
248 # Avoid running mktemp(1) unless actually needed.
249 # It may not be functional, e.g., due to new ABI
250 # when in the middle of installing over this system.
252 .if make(distributeworld) || make(installworld)
253 INSTALLTMP!= /usr/bin/mktemp -d -u -t install
257 # Building a world goes through the following stages
259 # 1. legacy stage [BMAKE]
260 # This stage is responsible for creating compatibility
261 # shims that are needed by the bootstrap-tools,
262 # build-tools and cross-tools stages. These are generally
263 # APIs that tools from one of those three stages need to
264 # build that aren't present on the host.
265 # 1. bootstrap-tools stage [BMAKE]
266 # This stage is responsible for creating programs that
267 # are needed for backward compatibility reasons. They
268 # are not built as cross-tools.
269 # 2. build-tools stage [TMAKE]
270 # This stage is responsible for creating the object
271 # tree and building any tools that are needed during
272 # the build process. Some programs are listed during
273 # this phase because they build binaries to generate
274 # files needed to build these programs. This stage also
275 # builds the 'build-tools' target rather than 'all'.
276 # 3. cross-tools stage [XMAKE]
277 # This stage is responsible for creating any tools that
278 # are needed for building the system. A cross-compiler is one
279 # of them. This differs from build tools in two ways:
280 # 1. the 'all' target is built rather than 'build-tools'
281 # 2. these tools are installed into TMPPATH for stage 4.
282 # 4. world stage [WMAKE]
283 # This stage actually builds the world.
284 # 5. install stage (optional) [IMAKE]
285 # This stage installs a previously built world.
290 # Common environment for world related stages
291 CROSSENV+= MAKEOBJDIRPREFIX=${OBJTREE} \
292 MACHINE_ARCH=${TARGET_ARCH} \
294 CPUTYPE=${TARGET_CPUTYPE}
295 .if ${MK_GROFF} != "no"
296 CROSSENV+= GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
297 GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
298 GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
300 .if defined(TARGET_CFLAGS)
301 CROSSENV+= ${TARGET_CFLAGS}
304 # bootstrap-tools stage
305 BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \
306 PATH=${BPATH}:${PATH} \
307 WORLDTMP=${WORLDTMP} \
308 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
309 # need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile
311 BOOTSTRAPPING=${OSRELDATE} \
313 MK_HTML=no NO_LINT=yes MK_MAN=no \
314 -DNO_PIC MK_PROFILE=no -DNO_SHARED \
315 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
316 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
317 MK_LLDB=no MK_TESTS=no \
320 BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \
321 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
325 TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \
326 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
327 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
329 BOOTSTRAPPING=${OSRELDATE} \
332 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
333 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
334 MK_LLDB=no MK_TESTS=no
337 XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
338 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
339 MK_GDB=no MK_TESTS=no
342 KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \
343 PATH=${BPATH}:${PATH} \
345 KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \
346 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
348 BOOTSTRAPPING=${OSRELDATE} \
350 MK_HTML=no -DNO_LINT MK_MAN=no \
351 -DNO_PIC MK_PROFILE=no -DNO_SHARED \
352 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no
355 WMAKEENV= ${CROSSENV} \
357 INSTALL="sh ${.CURDIR}/tools/install.sh" \
361 HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
363 HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
366 .if defined(CROSS_TOOLCHAIN_PREFIX)
367 CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
368 CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
371 # If we do not have a bootstrap binutils (because the in-tree one does not
372 # support the target architecture), provide a default cross-binutils prefix.
373 # This allows aarch64 builds, for example, to automatically use the
374 # aarch64-binutils port or package.
375 .if !make(showconfig)
376 .if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \
377 !defined(CROSS_BINUTILS_PREFIX)
378 CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/
379 .if !exists(${CROSS_BINUTILS_PREFIX})
380 .error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX.
385 XCOMPILERS= CC CXX CPP
386 .for COMPILER in ${XCOMPILERS}
387 .if defined(CROSS_COMPILER_PREFIX)
388 X${COMPILER}?= ${CROSS_COMPILER_PREFIX}${${COMPILER}}
390 X${COMPILER}?= ${${COMPILER}}
393 XBINUTILS= AS AR LD NM OBJCOPY OBJDUMP RANLIB SIZE STRINGS
394 .for BINUTIL in ${XBINUTILS}
395 .if defined(CROSS_BINUTILS_PREFIX) && \
396 exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}})
397 X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX}${${BINUTIL}}
399 X${BINUTIL}?= ${${BINUTIL}}
402 CROSSENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \
403 DEPFLAGS="${DEPFLAGS}" \
404 CPP="${XCPP} ${XCFLAGS}" \
405 AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \
406 OBJDUMP=${XOBJDUMP} OBJCOPY="${XOBJCOPY}" \
407 RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \
410 .if ${XCC:N${CCACHE_BIN}:M/*}
411 .if defined(CROSS_BINUTILS_PREFIX)
412 # In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
413 # directory, but the compiler will look in the right place for it's
414 # tools so we don't need to tell it where to look.
415 .if exists(${CROSS_BINUTILS_PREFIX})
416 BFLAGS+= -B${CROSS_BINUTILS_PREFIX}
419 BFLAGS+= -B${WORLDTMP}/usr/bin
421 .if ${TARGET} == "arm"
422 .if ${TARGET_ARCH:M*hf*} != ""
423 TARGET_ABI= gnueabihf
428 .if defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc
429 XCFLAGS+= -isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib
430 XCXXFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 -std=gnu++11 -L${WORLDTMP}/../lib/libc++
431 # XXX: DEPFLAGS is a workaround for not properly passing CXXFLAGS to sub-makes
432 # due to CXX="${XCXX} ${XCXXFLAGS}". bsd.dep.mk does use CXXFLAGS when
433 # building C++ files so this can come out if passing CXXFLAGS down is fixed.
434 DEPFLAGS+= -I${WORLDTMP}/usr/include/c++/v1
437 TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd11.0
438 XCFLAGS+= -target ${TARGET_TRIPLE}
440 XCFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS}
441 XCXXFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS}
443 .if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
444 BFLAGS+= -B${CROSS_BINUTILS_PREFIX}
446 XCXXFLAGS+= ${BFLAGS}
450 WMAKE= ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP}
452 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
454 LIB32_OBJTREE= ${OBJTREE}${.CURDIR}/world32
455 LIB32TMP= ${OBJTREE}${.CURDIR}/lib32
457 .if ${TARGET_ARCH} == "amd64"
458 .if empty(TARGET_CPUTYPE)
459 LIB32CPUFLAGS= -march=i686 -mmmx -msse -msse2
461 LIB32CPUFLAGS= -march=${TARGET_CPUTYPE}
463 LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \
464 MACHINE_CPU="i686 mmx sse sse2"
467 LD="${XLD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \
468 OBJCOPY="${XOBJCOPY}"
470 .elif ${TARGET_ARCH} == "powerpc64"
471 .if empty(TARGET_CPUTYPE)
472 LIB32CPUFLAGS= -mcpu=powerpc
474 LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE}
476 LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc
478 LD="${XLD} -m elf32ppc_fbsd" \
479 OBJCOPY="${XOBJCOPY}"
483 LIB32FLAGS= -m32 ${LIB32CPUFLAGS} -DCOMPAT_32BIT \
484 -isystem ${LIB32TMP}/usr/include/ \
485 -L${LIB32TMP}/usr/lib32 \
486 -B${LIB32TMP}/usr/lib32
487 .if ${XCC:N${CCACHE_BIN}:M/*}
488 LIB32FLAGS+= --sysroot=${WORLDTMP}
491 # Yes, the flags are redundant.
492 LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${LIB32_OBJTREE} \
493 _LDSCRIPTROOT=${LIB32TMP} \
494 INSTALL="sh ${.CURDIR}/tools/install.sh" \
497 SHLIBDIR=/usr/lib32 \
498 DTRACE="${DTRACE} -32"
499 LIB32WMAKEFLAGS+= CC="${XCC} ${LIB32FLAGS}" \
500 CXX="${XCXX} ${LIB32FLAGS}" \
501 DESTDIR=${LIB32TMP} \
509 LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \
511 LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} \
512 MK_TOOLCHAIN=no ${IMAKE_INSTALL}
515 IMAKEENV= ${CROSSENV:N_LDSCRIPTROOT=*}
516 IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 \
517 ${IMAKE_INSTALL} ${IMAKE_MTREE}
518 .if empty(.MAKEFLAGS:M-n)
519 IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \
520 LD_LIBRARY_PATH=${INSTALLTMP} \
521 PATH_LOCALE=${INSTALLTMP}/locale
522 IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh
524 IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP}
526 .if defined(DB_FROM_SRC)
527 INSTALLFLAGS+= -N ${.CURDIR}/etc
528 MTREEFLAGS+= -N ${.CURDIR}/etc
530 _INSTALL_DDIR= ${DESTDIR}/${DISTDIR}
531 INSTALL_DDIR= ${_INSTALL_DDIR:S://:/:g:C:/$::}
533 METALOG?= ${DESTDIR}/${DISTDIR}/METALOG
534 IMAKE+= -DNO_ROOT METALOG=${METALOG}
535 INSTALLFLAGS+= -U -M ${METALOG} -D ${INSTALL_DDIR}
538 .if defined(DB_FROM_SRC) || defined(NO_ROOT)
539 IMAKE_INSTALL= INSTALL="install ${INSTALLFLAGS}"
540 IMAKE_MTREE= MTREE_CMD="mtree ${MTREEFLAGS}"
544 KMAKEENV= ${WMAKEENV}
545 KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
550 # Attempt to rebuild the entire system, with reasonable chance of
551 # success, regardless of how old your existing system is.
554 .if ${.CURDIR:C/[^,]//g} != ""
555 # The m4 build of sendmail files doesn't like it if ',' is used
556 # anywhere in the path of it's files.
558 @echo "*** Error: path to source tree contains a comma ','"
563 @echo "--------------------------------------------------------------"
564 @echo ">>> Rebuilding the temporary build tree"
565 @echo "--------------------------------------------------------------"
566 .if !defined(NO_CLEAN)
568 .if defined(LIB32TMP)
572 rm -rf ${WORLDTMP}/legacy/usr/include
573 # XXX - These can depend on any header file.
574 rm -f ${OBJTREE}${.CURDIR}/lib/libsysdecode/ioctl.c
575 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.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 distribution: .MAKE .PHONY
1088 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1089 ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1090 .if make(distribution)
1091 ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1092 ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1093 METALOG=${METALOG} installconfig
1097 # buildkernel and installkernel
1099 # Which kernels to build and/or install is specified by setting
1100 # KERNCONF. If not defined a GENERIC kernel is built/installed.
1101 # Only the existing (depending TARGET) config files are used
1102 # for building kernels and only the first of these is designated
1103 # as the one being installed.
1105 # Note that we have to use TARGET instead of TARGET_ARCH when
1106 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
1107 # be set to cross-build, we have to make sure TARGET is set
1110 .if defined(KERNFAST)
1115 # Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1116 .if !defined(KERNCONF) && ${KERNFAST} != "1"
1117 KERNCONF=${KERNFAST}
1120 .if ${TARGET_ARCH} == "powerpc64"
1121 KERNCONF?= GENERIC64
1125 INSTKERNNAME?= kernel
1127 KERNSRCDIR?= ${.CURDIR}/sys
1128 KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf
1129 KRNLOBJDIR= ${OBJTREE}${KERNSRCDIR}
1130 KERNCONFDIR?= ${KRNLCONFDIR}
1134 .if defined(NO_INSTALLKERNEL)
1135 # All of the BUILDKERNELS loops start at index 1.
1136 BUILDKERNELS+= dummy
1138 .for _kernel in ${KERNCONF}
1139 .if exists(${KERNCONFDIR}/${_kernel})
1140 BUILDKERNELS+= ${_kernel}
1141 .if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1142 INSTALLKERNEL= ${_kernel}
1147 ${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1152 # Builds all kernels defined by BUILDKERNELS.
1154 buildkernel: .MAKE .PHONY
1155 .if empty(BUILDKERNELS:Ndummy)
1156 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1160 .for _kernel in ${BUILDKERNELS:Ndummy}
1161 @echo "--------------------------------------------------------------"
1162 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1163 @echo "--------------------------------------------------------------"
1164 @echo "===> ${_kernel}"
1165 mkdir -p ${KRNLOBJDIR}
1166 .if !defined(NO_KERNELCONFIG)
1168 @echo "--------------------------------------------------------------"
1169 @echo ">>> stage 1: configuring the kernel"
1170 @echo "--------------------------------------------------------------"
1171 cd ${KRNLCONFDIR}; \
1173 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1174 -I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1176 .if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1178 @echo "--------------------------------------------------------------"
1179 @echo ">>> stage 2.1: cleaning up the object tree"
1180 @echo "--------------------------------------------------------------"
1181 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1183 .if !defined(NO_KERNELOBJ)
1185 @echo "--------------------------------------------------------------"
1186 @echo ">>> stage 2.2: rebuilding the object tree"
1187 @echo "--------------------------------------------------------------"
1188 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1191 @echo "--------------------------------------------------------------"
1192 @echo ">>> stage 2.3: build tools"
1193 @echo "--------------------------------------------------------------"
1194 ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1195 .if !defined(NO_KERNELDEPEND)
1197 @echo "--------------------------------------------------------------"
1198 @echo ">>> stage 3.1: making dependencies"
1199 @echo "--------------------------------------------------------------"
1200 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
1203 @echo "--------------------------------------------------------------"
1204 @echo ">>> stage 3.2: building everything"
1205 @echo "--------------------------------------------------------------"
1206 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1207 @echo "--------------------------------------------------------------"
1208 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1209 @echo "--------------------------------------------------------------"
1213 # installkernel, etc.
1215 # Install the kernel defined by INSTALLKERNEL
1217 installkernel installkernel.debug \
1218 reinstallkernel reinstallkernel.debug: _installcheck_kernel
1219 .if !defined(NO_INSTALLKERNEL)
1220 .if empty(INSTALLKERNEL)
1221 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1224 @echo "--------------------------------------------------------------"
1225 @echo ">>> Installing kernel ${INSTALLKERNEL}"
1226 @echo "--------------------------------------------------------------"
1227 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1228 ${CROSSENV} PATH=${TMPPATH} \
1229 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1231 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1232 .for _kernel in ${BUILDKERNELS:[2..-1]}
1233 @echo "--------------------------------------------------------------"
1234 @echo ">>> Installing kernel ${_kernel}"
1235 @echo "--------------------------------------------------------------"
1236 cd ${KRNLOBJDIR}/${_kernel}; \
1237 ${CROSSENV} PATH=${TMPPATH} \
1238 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1242 distributekernel distributekernel.debug:
1243 .if !defined(NO_INSTALLKERNEL)
1244 .if empty(INSTALLKERNEL)
1245 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1248 mkdir -p ${DESTDIR}/${DISTDIR}
1249 .if defined(NO_ROOT)
1250 echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1252 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1253 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1254 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1255 DESTDIR=${INSTALL_DDIR}/kernel \
1256 ${.TARGET:S/distributekernel/install/}
1257 .if defined(NO_ROOT)
1258 sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1259 ${DESTDIR}/${DISTDIR}/kernel.meta
1262 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1263 .for _kernel in ${BUILDKERNELS:[2..-1]}
1264 .if defined(NO_ROOT)
1265 echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1267 cd ${KRNLOBJDIR}/${_kernel}; \
1268 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1269 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1270 KERNEL=${INSTKERNNAME}.${_kernel} \
1271 DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1272 ${.TARGET:S/distributekernel/install/}
1273 .if defined(NO_ROOT)
1274 sed -e 's|^./kernel|.|' \
1275 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1276 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1282 .if defined(NO_ROOT)
1283 .if !defined(NO_INSTALLKERNEL)
1284 cd ${DESTDIR}/${DISTDIR}/kernel; \
1285 tar cvf - --exclude '*.debug' \
1286 @${DESTDIR}/${DISTDIR}/kernel.meta | \
1287 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1289 cd ${DESTDIR}/${DISTDIR}/kernel; \
1290 tar cvf - --include '*/*/*.debug' \
1291 @${DESTDIR}/${DISTDIR}/kernel.meta | \
1292 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1293 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1294 .for _kernel in ${BUILDKERNELS:[2..-1]}
1295 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1296 tar cvf - --exclude '*.debug' \
1297 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1298 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1299 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1300 tar cvf - --include '*/*/*.debug' \
1301 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1302 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1306 .if !defined(NO_INSTALLKERNEL)
1307 cd ${DESTDIR}/${DISTDIR}/kernel; \
1308 tar cvf - --exclude '*.debug' . | \
1309 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1311 cd ${DESTDIR}/${DISTDIR}/kernel; \
1312 tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1313 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1314 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1315 .for _kernel in ${BUILDKERNELS:[2..-1]}
1316 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1317 tar cvf - --exclude '*.debug' . | \
1318 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1319 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1320 tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1321 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1330 # Run test suite on installed world.
1333 @if [ ! -x ${LOCALBASE}/bin/kyua ]; then \
1334 echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
1337 ${_+_}${LOCALBASE}/bin/kyua test -k ${TESTSBASE}/Kyuafile
1343 # Build the API documentation with doxygen
1346 @if [ ! -x ${LOCALBASE}/bin/doxygen ]; then \
1347 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1350 ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1355 # Update the source tree(s), by running svn/svnup to update to the
1359 .if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE)
1360 @echo "--------------------------------------------------------------"
1361 @echo "CVS_UPDATE and SUP_UPDATE are no longer supported."
1362 @echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated"
1363 @echo "--------------------------------------------------------------"
1366 .if defined(SVN_UPDATE)
1367 @echo "--------------------------------------------------------------"
1368 @echo ">>> Updating ${.CURDIR} using Subversion"
1369 @echo "--------------------------------------------------------------"
1370 @(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
1374 # ------------------------------------------------------------------------
1376 # From here onwards are utility targets used by the 'make world' and
1377 # related targets. If your 'world' breaks, you may like to try to fix
1378 # the problem and manually run the following targets to attempt to
1379 # complete the build. Beware, this is *not* guaranteed to work, you
1380 # need to have a pretty good grip on the current state of the system
1381 # to attempt to manually finish it. If in doubt, 'make world' again.
1385 # legacy: Build compatibility shims for the next three targets. This is a
1386 # minimal set of tools and shims necessary to compensate for older systems
1387 # which don't have the APIs required by the targets built in bootstrap-tools,
1388 # build-tools or cross-tools.
1391 # ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
1392 .if ${BOOTSTRAPPING} < 1100006
1393 _elftoolchain_libs= lib/libelf lib/libdwarf
1397 .if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0
1398 @echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \
1401 .for _tool in tools/build ${_elftoolchain_libs}
1402 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
1403 cd ${.CURDIR}/${_tool}; \
1404 ${MAKE} DIRPRFX=${_tool}/ obj; \
1405 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1406 ${MAKE} DIRPRFX=${_tool}/ depend; \
1407 ${MAKE} DIRPRFX=${_tool}/ all; \
1408 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1412 # bootstrap-tools: Build tools needed for compatibility. These are binaries that
1413 # are built to build other binaries in the system. However, the focus of these
1414 # binaries is usually quite narrow. Bootstrap tools use the host's compiler and
1415 # libraries, augmented by -legacy.
1417 _bt= _bootstrap-tools
1419 .if ${MK_GAMES} != "no"
1420 _strfile= usr.bin/fortune/strfile
1423 .if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1424 _gperf= gnu/usr.bin/gperf
1427 .if ${MK_GROFF} != "no"
1428 _groff= gnu/usr.bin/groff \
1432 .if ${MK_VT} != "no"
1433 _vtfontcvt= usr.bin/vtfontcvt
1436 .if ${BOOTSTRAPPING} < 900002
1440 .if ${BOOTSTRAPPING} < 1000033
1441 _libopenbsd= lib/libopenbsd
1445 ${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd
1446 ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1449 .if ${BOOTSTRAPPING} < 1000026
1450 _nmtree= lib/libnetbsd \
1453 ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1456 .if ${BOOTSTRAPPING} < 1000027
1460 # r277259 crunchide: Correct 64-bit section header offset
1461 # r281674 crunchide: always include both 32- and 64-bit ELF support
1462 # r285986 crunchen: use STRIPBIN rather than STRIP
1463 .if ${BOOTSTRAPPING} < 1100078
1464 _crunch= usr.sbin/crunch
1467 .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1474 ${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1476 .if ${MK_BSNMP} != "no"
1477 _gensnmptree= usr.sbin/bsnmpd/gensnmptree
1480 # We need to build tblgen when we're building clang either as
1481 # the bootstrap compiler, or as the part of the normal build.
1482 .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no"
1484 lib/clang/libllvmsupport \
1485 lib/clang/libllvmtablegen \
1486 usr.bin/clang/tblgen \
1487 usr.bin/clang/clang-tblgen
1489 ${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1490 ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1493 # Default to building the GPL DTC, but build the BSDL one if users explicitly
1496 .if ${MK_GPL_DTC} != "no"
1497 _dtc= gnu/usr.bin/dtc
1500 .if ${MK_KERBEROS} != "no"
1501 _kerberos5_bootstrap_tools= \
1502 kerberos5/tools/make-roken \
1503 kerberos5/lib/libroken \
1504 kerberos5/lib/libvers \
1505 kerberos5/tools/asn1_compile \
1506 kerberos5/tools/slc \
1509 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1512 .if ${MK_MANDOCDB} != "no"
1513 _libopenbsd?= lib/libopenbsd
1514 _makewhatis= lib/libsqlite3 \
1516 ${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd ${_bt}-lib/libsqlite3
1518 _makewhatis=usr.bin/makewhatis
1521 bootstrap-tools: .PHONY
1523 # Please document (add comment) why something is in 'bootstrap-tools'.
1524 # Try to bound the building of the bootstrap-tool to just the
1525 # FreeBSD versions that need the tool built at this stage of the build.
1528 ${_kerberos5_bootstrap_tools} \
1550 ${_bt}-${_tool}: .PHONY .MAKE
1551 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1552 cd ${.CURDIR}/${_tool}; \
1553 ${MAKE} DIRPRFX=${_tool}/ obj; \
1554 ${MAKE} DIRPRFX=${_tool}/ depend; \
1555 ${MAKE} DIRPRFX=${_tool}/ all; \
1556 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1558 bootstrap-tools: ${_bt}-${_tool}
1562 # build-tools: Build special purpose build tools
1564 .if !defined(NO_SHARE)
1565 _share= share/syscons/scrnmaps
1568 .if ${MK_GCC} != "no"
1569 _gcc_tools= gnu/usr.bin/cc/cc_tools
1572 .if ${MK_RESCUE} != "no"
1573 # rescue includes programs that have build-tools targets
1574 _rescue=rescue/rescue
1580 ${LOCAL_TOOL_DIRS} \
1581 lib/ncurses/ncurses \
1582 lib/ncurses/ncursesw \
1587 usr.bin/mkesdb_static \
1588 usr.bin/mkcsmapper_static \
1590 build-tools_${_tool}: .PHONY
1591 ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1592 cd ${.CURDIR}/${_tool}; \
1593 ${MAKE} DIRPRFX=${_tool}/ obj; \
1594 ${MAKE} DIRPRFX=${_tool}/ build-tools
1595 build-tools: build-tools_${_tool}
1599 build-tools_${_tool}: .PHONY
1600 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1601 cd ${.CURDIR}/${_tool}; \
1602 ${MAKE} DIRPRFX=${_tool}/ obj; \
1603 ${MAKE} DIRPRFX=${_tool}/ depend; \
1604 ${MAKE} DIRPRFX=${_tool}/ all
1605 build-tools: build-tools_${_tool}
1609 # kernel-tools: Build kernel-building tools
1612 mkdir -p ${MAKEOBJDIRPREFIX}/usr
1613 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1614 -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1617 # cross-tools: All the tools needed to build the rest of the system after
1618 # we get done with the earlier stages. It is the last set of tools needed
1619 # to begin building the target binaries.
1621 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1622 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1623 _btxld= usr.sbin/btxld
1627 # Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
1628 # resulting from missing bug fixes or ELF Toolchain updates.
1629 .if ${MK_CDDL} != "no"
1630 _dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
1631 cddl/usr.bin/ctfmerge
1634 # If we're given an XAS, don't build binutils.
1635 .if ${XAS:M/*} == ""
1636 .if ${MK_BINUTILS_BOOTSTRAP} != "no"
1637 _binutils= gnu/usr.bin/binutils
1639 .if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1640 _elftctools= lib/libelftc \
1646 # These are not required by the build, but can be useful for developers who
1647 # cross-build on a FreeBSD 10 host:
1648 _elftctools+= usr.bin/addr2line
1650 .elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1651 # If cross-building with an external binutils we still need to build strip for
1652 # the target (for at least crunchide).
1653 _elftctools= lib/libelftc \
1658 # If an full path to an external cross compiler is given, don't build
1660 .if ${XCC:N${CCACHE_BIN}:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1661 .if ${MK_CLANG_BOOTSTRAP} != "no"
1662 _clang= usr.bin/clang
1663 _clang_libs= lib/clang
1665 .if ${MK_GCC_BOOTSTRAP} != "no"
1669 .if ${MK_USB} != "no"
1670 _usb_tools= sys/boot/usb/tools
1673 cross-tools: .MAKE .PHONY
1684 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1685 cd ${.CURDIR}/${_tool}; \
1686 ${MAKE} DIRPRFX=${_tool}/ obj; \
1687 ${MAKE} DIRPRFX=${_tool}/ depend; \
1688 ${MAKE} DIRPRFX=${_tool}/ all; \
1689 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1692 NXBDESTDIR= ${OBJTREE}/nxb-bin
1693 NXBENV= MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1694 INSTALL="sh ${.CURDIR}/tools/install.sh" \
1695 PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
1696 NXBMAKE= ${NXBENV} ${MAKE} \
1697 TBLGEN=${NXBDESTDIR}/usr/bin/tblgen \
1698 CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \
1699 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1700 MK_GDB=no MK_TESTS=no \
1702 MK_HTML=no NO_LINT=yes MK_MAN=no \
1703 -DNO_PIC MK_PROFILE=no -DNO_SHARED \
1704 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
1705 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
1706 MK_LLDB=no MK_DEBUG_FILES=no
1708 # native-xtools is the current target for qemu-user cross builds of ports
1709 # via poudriere and the imgact_binmisc kernel module.
1710 # For non-clang enabled targets that are still using the in tree gcc
1711 # we must build a gperf binary for one instance of its Makefiles. On
1712 # clang-enabled systems, the gperf binary is obsolete.
1713 native-xtools: .PHONY
1714 .if ${MK_GCC_BOOTSTRAP} != "no"
1715 mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
1716 ${_+_}@${ECHODIR} "===> ${_gperf} (obj,depend,all,install)"; \
1717 cd ${.CURDIR}/${_gperf}; \
1718 ${NXBMAKE} DIRPRFX=${_gperf}/ obj; \
1719 ${NXBMAKE} DIRPRFX=${_gperf}/ depend; \
1720 ${NXBMAKE} DIRPRFX=${_gperf}/ all; \
1721 ${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
1723 mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
1724 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1725 -p ${NXBDESTDIR}/usr >/dev/null
1726 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1727 -p ${NXBDESTDIR}/usr/include >/dev/null
1728 .if ${MK_DEBUG_FILES} != "no"
1729 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1730 -p ${NXBDESTDIR}/usr/lib >/dev/null
1791 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1792 cd ${.CURDIR}/${_tool}; \
1793 ${NXBMAKE} DIRPRFX=${_tool}/ obj; \
1794 ${NXBMAKE} DIRPRFX=${_tool}/ depend; \
1795 ${NXBMAKE} DIRPRFX=${_tool}/ all; \
1796 ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${NXBDESTDIR} install
1800 # hierarchy - ensure that all the needed directories are present
1802 hierarchy hier: .MAKE .PHONY
1803 ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
1806 # libraries - build all libraries, and install them under ${DESTDIR}.
1808 # The list of libraries with dependents (${_prebuild_libs}) and their
1809 # interdependencies (__L) are built automatically by the
1810 # ${.CURDIR}/tools/make_libdeps.sh script.
1812 libraries: .MAKE .PHONY
1813 ${_+_}cd ${.CURDIR}; \
1814 ${MAKE} -f Makefile.inc1 _prereq_libs; \
1815 ${MAKE} -f Makefile.inc1 _startup_libs; \
1816 ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1817 ${MAKE} -f Makefile.inc1 _generic_libs
1820 # static libgcc.a prerequisite for shared libc
1822 _prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1824 # These dependencies are not automatically generated:
1826 # gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1827 # all shared libraries for ELF.
1829 _startup_libs= gnu/lib/csu
1830 _startup_libs+= lib/csu
1831 _startup_libs+= gnu/lib/libgcc
1832 _startup_libs+= lib/libcompiler_rt
1833 _startup_libs+= lib/libc
1834 _startup_libs+= lib/libc_nonshared
1835 .if ${MK_LIBCPLUSPLUS} != "no"
1836 _startup_libs+= lib/libcxxrt
1839 gnu/lib/libgcc__L: lib/libc__L
1840 gnu/lib/libgcc__L: lib/libc_nonshared__L
1841 .if ${MK_LIBCPLUSPLUS} != "no"
1842 lib/libcxxrt__L: gnu/lib/libgcc__L
1845 _prebuild_libs= ${_kerberos5_lib_libasn1} \
1846 ${_kerberos5_lib_libhdb} \
1847 ${_kerberos5_lib_libheimbase} \
1848 ${_kerberos5_lib_libheimntlm} \
1850 ${_kerberos5_lib_libheimipcc} \
1851 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1852 ${_kerberos5_lib_libroken} \
1853 ${_kerberos5_lib_libwind} \
1854 lib/libbz2 ${_libcom_err} lib/libcrypt \
1855 lib/libelf lib/libexpat \
1858 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
1859 ${_lib_libcapsicum} \
1860 lib/ncurses/ncurses lib/ncurses/ncursesw \
1861 lib/libopie lib/libpam ${_lib_libthr} \
1862 ${_lib_libradius} lib/libsbuf lib/libtacplus \
1864 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1865 ${_cddl_lib_libuutil} \
1866 ${_cddl_lib_libavl} \
1867 ${_cddl_lib_libzfs_core} \
1868 ${_cddl_lib_libctf} \
1869 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
1870 ${_secure_lib_libcrypto} ${_lib_libldns} \
1871 ${_secure_lib_libssh} ${_secure_lib_libssl} \
1873 .if ${MK_GNUCXX} != "no"
1874 _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1875 gnu/lib/libstdc++__L: lib/msun__L
1876 gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
1879 .if ${MK_LIBCPLUSPLUS} != "no"
1880 _prebuild_libs+= lib/libc++
1883 lib/libgeom__L: lib/libexpat__L
1884 lib/libkvm__L: lib/libelf__L
1886 .if ${MK_LIBTHR} != "no"
1887 _lib_libthr= lib/libthr
1890 .if ${MK_RADIUS_SUPPORT} != "no"
1891 _lib_libradius= lib/libradius
1894 .if ${MK_OFED} != "no"
1895 _ofed_lib= contrib/ofed/usr.lib/
1898 .if ${MK_CASPER} != "no"
1899 _lib_libcapsicum=lib/libcapsicum
1902 lib/libcapsicum__L: lib/libnv__L
1903 lib/libpjdlog__L: lib/libutil__L
1904 lib/liblzma__L: lib/libthr__L
1906 _generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1907 .for _DIR in ${LOCAL_LIB_DIRS}
1908 .if exists(${.CURDIR}/${_DIR}/Makefile)
1909 _generic_libs+= ${_DIR}
1913 lib/libopie__L lib/libtacplus__L: lib/libmd__L
1915 .if ${MK_CDDL} != "no"
1916 _cddl_lib_libumem= cddl/lib/libumem
1917 _cddl_lib_libnvpair= cddl/lib/libnvpair
1918 _cddl_lib_libavl= cddl/lib/libavl
1919 _cddl_lib_libuutil= cddl/lib/libuutil
1920 _cddl_lib_libzfs_core= cddl/lib/libzfs_core
1921 _cddl_lib_libctf= cddl/lib/libctf
1923 cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1924 cddl/lib/libzfs__L: lib/libgeom__L
1925 cddl/lib/libctf__L: lib/libz__L
1927 # cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
1928 # on select architectures though (see cddl/lib/Makefile)
1929 .if ${MACHINE_CPUARCH} != "sparc64"
1930 _prebuild_libs+= lib/libproc lib/librtld_db
1933 .if ${MK_CRYPT} != "no"
1934 .if ${MK_OPENSSL} != "no"
1935 _secure_lib_libcrypto= secure/lib/libcrypto
1936 _secure_lib_libssl= secure/lib/libssl
1937 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1938 .if ${MK_LDNS} != "no"
1939 _lib_libldns= lib/libldns
1940 lib/libldns__L: secure/lib/libcrypto__L
1942 .if ${MK_OPENSSH} != "no"
1943 _secure_lib_libssh= secure/lib/libssh
1944 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1945 .if ${MK_LDNS} != "no"
1946 secure/lib/libssh__L: lib/libldns__L
1948 .if ${MK_KERBEROS_SUPPORT} != "no"
1949 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1950 kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1951 lib/libmd__L kerberos5/lib/libroken__L
1955 _secure_lib= secure/lib
1958 .if ${MK_KERBEROS} != "no"
1959 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1960 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1961 kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1962 kerberos5/lib/libwind__L lib/libsqlite3__L
1963 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1964 kerberos5/lib/libroken__L lib/libcom_err__L
1965 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1966 secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1967 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1968 lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1969 kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1970 kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1971 kerberos5/lib/libroken__L: lib/libcrypt__L
1972 kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1973 kerberos5/lib/libheimbase__L: lib/libthr__L
1974 kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1977 lib/libsqlite3__L: lib/libthr__L
1979 .if ${MK_GSSAPI} != "no"
1980 _lib_libgssapi= lib/libgssapi
1983 .if ${MK_KERBEROS} != "no"
1984 _kerberos5_lib= kerberos5/lib
1985 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
1986 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
1987 _kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1988 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1989 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
1990 _kerberos5_lib_libroken= kerberos5/lib/libroken
1991 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1992 _libsqlite3= lib/libsqlite3
1993 _kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1994 _kerberos5_lib_libwind= kerberos5/lib/libwind
1995 _libcom_err= lib/libcom_err
1998 .if ${MK_NIS} != "no"
1999 _lib_libypclnt= lib/libypclnt
2002 .if ${MK_OPENSSL} == "no"
2003 lib/libradius__L: lib/libmd__L
2007 ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
2008 .if ${MK_CXX} != "no"
2009 .if ${MK_LIBCPLUSPLUS} != "no"
2010 lib/libproc__L: lib/libcxxrt__L
2011 .else # This implies MK_GNUCXX != "no"; see lib/libproc
2012 lib/libproc__L: gnu/lib/libsupc++__L
2016 gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
2018 .for _lib in ${_prereq_libs}
2019 ${_lib}__PL: .PHONY .MAKE
2020 .if exists(${.CURDIR}/${_lib})
2021 ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
2022 cd ${.CURDIR}/${_lib}; \
2023 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2024 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend; \
2025 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2026 DIRPRFX=${_lib}/ all; \
2027 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2028 DIRPRFX=${_lib}/ install
2032 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
2033 ${_lib}__L: .PHONY .MAKE
2034 .if exists(${.CURDIR}/${_lib})
2035 ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
2036 cd ${.CURDIR}/${_lib}; \
2037 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2038 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend; \
2039 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
2040 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
2044 # libpam is special: we need to build static PAM modules before
2045 # static PAM library, and dynamic PAM library before dynamic PAM
2047 lib/libpam__L: .PHONY .MAKE
2048 ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
2049 cd ${.CURDIR}/lib/libpam; \
2050 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ obj; \
2051 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ depend; \
2052 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
2053 -D_NO_LIBPAM_SO_YET all; \
2054 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
2055 -D_NO_LIBPAM_SO_YET install
2057 _prereq_libs: ${_prereq_libs:S/$/__PL/}
2058 _startup_libs: ${_startup_libs:S/$/__L/}
2059 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
2060 _generic_libs: ${_generic_libs:S/$/__L/}
2062 # Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
2063 # 'everything' with _PARALLEL_SUBDIR_OK set. This is because it is unlikely
2064 # that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
2065 # or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
2066 # parallel. This is safe for the world stage of buildworld though since it has
2067 # already built libraries in a proper order and installed includes into
2068 # WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
2069 # avoid trashing a system if it crashes mid-install.
2070 .if !make(all) || defined(_PARALLEL_SUBDIR_OK)
2074 .include <bsd.subdir.mk>
2076 .if make(check-old) || make(check-old-dirs) || \
2077 make(check-old-files) || make(check-old-libs) || \
2078 make(delete-old) || make(delete-old-dirs) || \
2079 make(delete-old-files) || make(delete-old-libs)
2082 # check for / delete old files section
2085 .include "ObsoleteFiles.inc"
2087 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
2088 else you can not start such an application. Consult UPDATING for more \
2089 information regarding how to cope with the removal/revision bump of a \
2092 .if !defined(BATCH_DELETE_OLD_FILES)
2099 @echo ">>> Removing old files (only deletes safe to delete libs)"
2100 # Ask for every old file if the user really wants to remove it.
2101 # It's annoying, but better safe than sorry.
2102 # NB: We cannot pass the list of OLD_FILES as a parameter because the
2103 # argument list will get too long. Using .for/.endfor make "loops" will make
2104 # the Makefile parser segfault.
2107 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2108 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2109 while read file; do \
2110 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2111 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2112 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2114 for ext in debug symbols; do \
2115 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2116 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2117 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2122 # Remove catpages without corresponding manpages.
2124 find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2125 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2126 while read catpage; do \
2128 if [ ! -e "$${manpage}" ]; then \
2129 rm ${RM_I} $${catpage} <&3; \
2132 @echo ">>> Old files removed"
2135 @echo ">>> Checking for old files"
2137 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2138 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2139 while read file; do \
2140 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2141 echo "${DESTDIR}/$${file}"; \
2143 for ext in debug symbols; do \
2144 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2145 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2149 # Check for catpages without corresponding manpages.
2150 @find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2151 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2152 while read catpage; do \
2154 if [ ! -e "$${manpage}" ]; then \
2160 @echo ">>> Removing old libraries"
2161 @echo "${OLD_LIBS_MESSAGE}" | fmt
2164 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2165 -V OLD_LIBS | xargs -n1 | \
2166 while read file; do \
2167 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2168 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2169 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2171 for ext in debug symbols; do \
2172 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2173 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2174 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2179 @echo ">>> Old libraries removed"
2182 @echo ">>> Checking for old libraries"
2184 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2185 -V OLD_LIBS | xargs -n1 | \
2186 while read file; do \
2187 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2188 echo "${DESTDIR}/$${file}"; \
2190 for ext in debug symbols; do \
2191 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2192 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2198 @echo ">>> Removing old directories"
2200 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2201 -V OLD_DIRS | xargs -n1 | sort -r | \
2202 while read dir; do \
2203 if [ -d "${DESTDIR}/$${dir}" ]; then \
2204 rmdir -v "${DESTDIR}/$${dir}" || true; \
2205 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2206 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2209 @echo ">>> Old directories removed"
2212 @echo ">>> Checking for old directories"
2214 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2215 -V OLD_DIRS | xargs -n1 | \
2216 while read dir; do \
2217 if [ -d "${DESTDIR}/$${dir}" ]; then \
2218 echo "${DESTDIR}/$${dir}"; \
2219 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2220 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2224 delete-old: delete-old-files delete-old-dirs
2225 @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2227 check-old: check-old-files check-old-libs check-old-dirs
2228 @echo "To remove old files and directories run '${MAKE} delete-old'."
2229 @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2234 # showconfig - show build configuration.
2237 @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1; \
2238 ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1) 2>&1 | grep ^MK_ | sort -u
2240 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2241 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2243 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2244 .if exists(${KERNCONFDIR}/${KERNCONF})
2245 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2246 '${KERNCONFDIR}/${KERNCONF}' ; echo
2252 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2253 DTBOUTPUTPATH= ${.CURDIR}
2257 # Build 'standalone' Device Tree Blob
2260 @PATH=${TMPPATH} MACHINE=${TARGET} \
2261 ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2262 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2267 # In the following, the first 'rm' in a series will usually remove all
2268 # files and directories. If it does not, then there are probably some
2269 # files with file flags set, so this unsets them and tries the 'rm' a
2270 # second time. There are situations where this target will be cleaning
2271 # some directories via more than one method, but that duplication is
2272 # needed to correctly handle all the possible situations. Removing all
2273 # files without file flags set in the first 'rm' instance saves time,
2274 # because 'chflags' will need to operate on fewer files afterwards.
2276 # It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
2277 # created by bsd.obj.mk, except that we don't want to .include that file
2280 BW_CANONICALOBJDIR:=${OBJTREE}${.CURDIR}
2282 .if exists(${BW_CANONICALOBJDIR}/)
2283 -rm -rf ${BW_CANONICALOBJDIR}/*
2284 -chflags -R 0 ${BW_CANONICALOBJDIR}
2285 rm -rf ${BW_CANONICALOBJDIR}/*
2287 .if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
2288 # To be safe in this case, fall back to a 'make cleandir'
2289 ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
2292 .if defined(TARGET) && defined(TARGET_ARCH)
2294 .if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2295 XDEV_CPUTYPE?=${CPUTYPE}
2297 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2300 NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2301 MK_MAN=no MK_NLS=no MK_PROFILE=no \
2302 MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2303 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2304 CPUTYPE=${XDEV_CPUTYPE}
2306 XDDIR=${TARGET_ARCH}-freebsd
2309 .error XDTP variable should be an absolute path
2312 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2313 INSTALL="sh ${.CURDIR}/tools/install.sh"
2315 TOOLS_PREFIX=${XDTP}
2316 CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2317 --sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2318 -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2319 CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2320 CPP="${CPP} ${CD2CFLAGS}" \
2321 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2323 CDTMP= ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2324 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2325 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2326 XDDESTDIR=${DESTDIR}/${XDTP}
2328 OSREL!= uname -r | sed -e 's/[-(].*//'
2331 .ORDER: xdev-build xdev-install xdev-links
2332 xdev: xdev-build xdev-install
2334 .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2335 xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2337 _xb-worldtmp: .PHONY
2338 mkdir -p ${CDTMP}/usr
2339 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2340 -p ${CDTMP}/usr >/dev/null
2342 _xb-bootstrap-tools: .PHONY
2346 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
2347 cd ${.CURDIR}/${_tool}; \
2348 ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2349 ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2350 ${CDMAKE} DIRPRFX=${_tool}/ all; \
2351 ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2354 _xb-build-tools: .PHONY
2355 ${_+_}@cd ${.CURDIR}; \
2356 ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2358 _xb-cross-tools: .PHONY
2366 ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
2367 cd ${.CURDIR}/${_tool}; \
2368 ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2369 ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2370 ${CDMAKE} DIRPRFX=${_tool}/ all
2374 ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2375 mkdir -p ${XDDESTDIR}
2376 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2377 -p ${XDDESTDIR} >/dev/null
2378 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2379 -p ${XDDESTDIR}/usr >/dev/null
2380 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2381 -p ${XDDESTDIR}/usr/include >/dev/null
2382 .if ${MK_LIB32} != "no"
2383 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \
2384 -p ${XDDESTDIR}/usr >/dev/null
2386 .if ${MK_TESTS} != "no"
2387 mkdir -p ${XDDESTDIR}${TESTSBASE}
2388 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2389 -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2392 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2393 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2395 _xi-cross-tools: .PHONY
2396 @echo "_xi-cross-tools"
2404 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2405 cd ${.CURDIR}/${_tool}; \
2406 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2409 _xi-includes: .PHONY
2410 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
2411 DESTDIR=${XDDESTDIR}
2413 _xi-libraries: .PHONY
2414 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2415 DESTDIR=${XDDESTDIR}
2418 ${_+_}cd ${XDDESTDIR}/usr/bin; \
2419 mkdir -p ../../../../usr/bin; \
2421 ln -sf ../../${XDTP}/usr/bin/$$i \
2422 ../../../../usr/bin/${XDDIR}-$$i; \
2423 ln -sf ../../${XDTP}/usr/bin/$$i \
2424 ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2427 xdev xdev-build xdev-install xdev-links:
2428 @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"