xref: /freebsd/Makefile.inc1 (revision 0610f417a4a664b7e3a8c57de800ae1f326a40e3)
1#
2# $FreeBSD$
3#
4# Make command line options:
5#	-DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6#	-DNO_CLEAN do not clean at all
7#	-DDB_FROM_SRC use the user/group databases in src/etc instead of
8#	    the system database when installing.
9#	-DNO_SHARE do not go into share subdir
10#	-DKERNFAST define NO_KERNEL{CONFIG,CLEAN,OBJ}
11#	-DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
12#	-DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
13#	-DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
14#	-DNO_PORTSUPDATE do not update ports in ${MAKE} update
15#	-DNO_ROOT install without using root privilege
16#	-DNO_DOCUPDATE do not update doc in ${MAKE} update
17#	-DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects
18#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
19#	LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list
20#	LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target
21#	LOCAL_MTREE="list of mtree files" to process to allow local directories
22#	    to be created before files are installed
23#	LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools
24#	    list
25#	LOCAL_XTOOL_DIRS="list of dirs" to add additional dirs to the
26#	    cross-tools target
27#	METALOG="path to metadata log" to write permission and ownership
28#	    when NO_ROOT is set.  (default: ${DESTDIR}/METALOG)
29#	TARGET="machine" to crossbuild world for a different machine type
30#	TARGET_ARCH= may be required when a TARGET supports multiple endians
31#	BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL})
32#	WORLD_FLAGS= additional flags to pass to make(1) during buildworld
33#	KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel
34#	SUBDIR_OVERRIDE="list of dirs" to build rather than everything.
35#	    All libraries and includes, and some build tools will still build.
36
37#
38# The intended user-driven targets are:
39# buildworld  - rebuild *everything*, including glue to help do upgrades
40# installworld- install everything built by "buildworld"
41# checkworld  - run test suite on installed world
42# doxygen     - build API documentation of the kernel
43# update      - convenient way to update your source tree (eg: svn/svnup)
44#
45# Standard targets (not defined here) are documented in the makefiles in
46# /usr/share/mk.  These include:
47#		obj depend all install clean cleandepend cleanobj
48
49.if !defined(TARGET) || !defined(TARGET_ARCH)
50.error "Both TARGET and TARGET_ARCH must be defined."
51.endif
52
53.if make(showconfig) || make(test-system-*)
54_MKSHOWCONFIG=	t
55.endif
56
57SRCDIR?=	${.CURDIR}
58LOCALBASE?=	/usr/local
59
60# Cross toolchain changes must be in effect before bsd.compiler.mk
61# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes.
62.if defined(CROSS_TOOLCHAIN)
63.if exists(${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk)
64.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk"
65.elif exists(${CROSS_TOOLCHAIN})
66.include "${CROSS_TOOLCHAIN}"
67.else
68.error CROSS_TOOLCHAIN ${CROSS_TOOLCHAIN} not found
69.endif
70CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}"
71.endif
72.if defined(CROSS_TOOLCHAIN_PREFIX)
73CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
74.endif
75
76XCOMPILERS=	CC CXX CPP
77.for COMPILER in ${XCOMPILERS}
78.if defined(CROSS_COMPILER_PREFIX)
79X${COMPILER}?=	${CROSS_COMPILER_PREFIX}${${COMPILER}}
80.else
81X${COMPILER}?=	${${COMPILER}}
82.endif
83.endfor
84# If a full path to an external cross compiler is given, don't build
85# a cross compiler.
86.if ${XCC:N${CCACHE_BIN}:M/*}
87MK_CLANG_BOOTSTRAP=	no
88MK_GCC_BOOTSTRAP=	no
89.endif
90
91# Pull in compiler metadata from buildworld/toolchain if possible to avoid
92# running CC from bsd.compiler.mk.
93.if make(installworld) || make(install) || make(distributeworld) || \
94    make(stageworld)
95.-include "${OBJTOP}/toolchain-metadata.mk"
96.if !defined(_LOADED_TOOLCHAIN_METADATA)
97.error A build is required first.  You may have the wrong MAKEOBJDIRPREFIX set.
98.endif
99.endif
100
101# Pull in COMPILER_TYPE and COMPILER_FREEBSD_VERSION early. Pull it from the
102# tree to be friendlier to foreign OS builds. It's safe to do so unconditionally
103# here since we will always have the right make, unlike in src/Makefile
104# Don't include bsd.linker.mk yet until XBINUTILS is handled (after src.opts.mk)
105_NO_INCLUDE_LINKERMK=	t
106# We also want the X_COMPILER* variables if we are using an external toolchain.
107_WANT_TOOLCHAIN_CROSS_VARS=	t
108.include "share/mk/bsd.compiler.mk"
109.undef _NO_INCLUDE_LINKERMK
110.undef _WANT_TOOLCHAIN_CROSS_VARS
111# src.opts.mk depends on COMPILER_FEATURES
112.include "share/mk/src.opts.mk"
113
114.if ${TARGET} == ${MACHINE}
115TARGET_CPUTYPE?=${CPUTYPE}
116.else
117TARGET_CPUTYPE?=
118.endif
119.if !empty(TARGET_CPUTYPE)
120_TARGET_CPUTYPE=${TARGET_CPUTYPE}
121.else
122_TARGET_CPUTYPE=dummy
123.endif
124.if ${TARGET} == "arm"
125.if ${TARGET_ARCH:Marmv[67]*} != "" && ${TARGET_CPUTYPE:M*soft*} == ""
126TARGET_ABI=	gnueabihf
127.else
128TARGET_ABI=	gnueabi
129.endif
130.endif
131MACHINE_ABI?=	unknown
132MACHINE_TRIPLE?=${MACHINE_ARCH:S/amd64/x86_64/:C/[hs]f$//:S/mipsn32/mips64/}-${MACHINE_ABI}-freebsd13.0
133TARGET_ABI?=	unknown
134TARGET_TRIPLE?=	${TARGET_ARCH:S/amd64/x86_64/:C/[hs]f$//:S/mipsn32/mips64/}-${TARGET_ABI}-freebsd13.0
135KNOWN_ARCHES?=	aarch64/arm64 \
136		amd64 \
137		arm \
138		armv6/arm \
139		armv7/arm \
140		i386 \
141		mips \
142		mipsel/mips \
143		mips64el/mips \
144		mipsn32el/mips \
145		mips64/mips \
146		mipsn32/mips \
147		mipshf/mips \
148		mipselhf/mips \
149		mips64elhf/mips \
150		mips64hf/mips \
151		powerpc \
152		powerpc64/powerpc \
153		powerpcspe/powerpc \
154		riscv64/riscv \
155		riscv64sf/riscv \
156		sparc64
157
158.if ${TARGET} == ${TARGET_ARCH}
159_t=		${TARGET}
160.else
161_t=		${TARGET_ARCH}/${TARGET}
162.endif
163.for _t in ${_t}
164.if empty(KNOWN_ARCHES:M${_t})
165.error Unknown target ${TARGET_ARCH}:${TARGET}.
166.endif
167.endfor
168
169# If all targets are disabled for system llvm then don't expect it to work
170# for cross-builds.
171.if !defined(TOOLS_PREFIX) && ${MK_LLVM_TARGET_ALL} == "no" && \
172    ${MACHINE} != ${TARGET} && ${MACHINE_ARCH} != ${TARGET_ARCH} && \
173    !make(showconfig)
174MK_SYSTEM_COMPILER=	no
175MK_SYSTEM_LINKER=	no
176.endif
177
178# Handle external binutils.
179.if defined(CROSS_TOOLCHAIN_PREFIX)
180CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
181.endif
182# If we do not have a bootstrap binutils (because the in-tree one does not
183# support the target architecture), provide a default cross-binutils prefix.
184# This allows riscv64 builds, for example, to automatically use the
185# riscv64-binutils port or package.
186.if !make(showconfig) && !defined(_NO_INCLUDE_COMPILERMK)
187.if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \
188    ${MK_LLD_BOOTSTRAP} == "no" && \
189    !defined(CROSS_BINUTILS_PREFIX)
190CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_TRIPLE}/bin/
191.if !exists(${CROSS_BINUTILS_PREFIX})
192.if !empty(BROKEN_OPTIONS:MGCC_BOOTSTRAP) && ${MK_CLANG_BOOTSTRAP} == "no"
193.error In-tree toolchain does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-xtoolchain-gcc port or package or set CROSS_TOOLCHAIN_PREFIX.
194.else
195.error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX.
196.endif
197.endif
198.endif
199.endif
200XBINUTILS=	AS AR LD NM OBJCOPY RANLIB SIZE STRINGS
201.for BINUTIL in ${XBINUTILS}
202.if defined(CROSS_BINUTILS_PREFIX) && \
203    exists(${CROSS_BINUTILS_PREFIX}/${${BINUTIL}})
204X${BINUTIL}?=	${CROSS_BINUTILS_PREFIX:C,/*$,,}/${${BINUTIL}}
205.else
206X${BINUTIL}?=	${${BINUTIL}}
207.endif
208.endfor
209
210# If a full path to an external linker is given, don't build lld.
211.if ${XLD:M/*}
212MK_LLD_BOOTSTRAP=	no
213.endif
214
215# We also want the X_LINKER* variables if we are using an external toolchain.
216_WANT_TOOLCHAIN_CROSS_VARS=	t
217.include "share/mk/bsd.linker.mk"
218.undef _WANT_TOOLCHAIN_CROSS_VARS
219
220# Begin WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD
221
222# WITH_SYSTEM_COMPILER - Pull in needed values and make a decision.
223
224# Check if there is a local compiler that can satisfy as an external compiler.
225# Which compiler is expected to be used?
226.if ${MK_CLANG_BOOTSTRAP} == "yes"
227WANT_COMPILER_TYPE=	clang
228.elif ${MK_GCC_BOOTSTRAP} == "yes"
229WANT_COMPILER_TYPE=	gcc
230.else
231WANT_COMPILER_TYPE=
232.endif
233
234.if !defined(WANT_COMPILER_FREEBSD_VERSION) && !make(showconfig) && \
235    !make(test-system-linker)
236.if ${WANT_COMPILER_TYPE} == "clang"
237WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h
238WANT_COMPILER_FREEBSD_VERSION!= \
239	awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \
240	${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
241WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc
242WANT_COMPILER_VERSION!= \
243	awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
244	${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
245.elif ${WANT_COMPILER_TYPE} == "gcc"
246WANT_COMPILER_FREEBSD_VERSION_FILE= gnu/usr.bin/cc/cc_tools/freebsd-native.h
247WANT_COMPILER_FREEBSD_VERSION!= \
248	awk '$$2 == "FBSD_CC_VER" {printf("%d\n", $$3)}' \
249	${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
250WANT_COMPILER_VERSION_FILE= contrib/gcc/BASE-VER
251WANT_COMPILER_VERSION!= \
252	awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3}' \
253	${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
254.endif
255.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION
256.endif	# !defined(WANT_COMPILER_FREEBSD_VERSION)
257
258# It needs to be the same revision as we would build for the bootstrap.
259# If the expected vs CC is different then we can't skip.
260# GCC cannot be used for cross-arch yet.  For clang we pass -target later if
261# TARGET_ARCH!=MACHINE_ARCH.
262.if ${MK_SYSTEM_COMPILER} == "yes" && \
263    defined(WANT_COMPILER_FREEBSD_VERSION) && \
264    (${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
265    !make(xdev*) && \
266    ${X_COMPILER_TYPE} == ${WANT_COMPILER_TYPE} && \
267    (${X_COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
268    ${X_COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \
269    ${X_COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION}
270# Everything matches, disable the bootstrap compiler.
271MK_CLANG_BOOTSTRAP=	no
272MK_GCC_BOOTSTRAP=	no
273USING_SYSTEM_COMPILER=	yes
274.endif	# ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE}
275
276# WITH_SYSTEM_LD - Pull in needed values and make a decision.
277
278# Check if there is a local linker that can satisfy as an external linker.
279# Which linker is expected to be used?
280.if ${MK_LLD_BOOTSTRAP} == "yes"
281WANT_LINKER_TYPE=		lld
282.elif ${MK_BINUTILS_BOOTSTRAP} == "yes"
283# Note that there's no support for bfd in WITH_SYSTEM_LINKER.
284WANT_LINKER_TYPE=	bfd
285.else
286WANT_LINKER_TYPE=
287.endif
288
289.if !defined(WANT_LINKER_FREEBSD_VERSION) && !make(showconfig) && \
290    !make(test-system-compiler)
291.if ${WANT_LINKER_TYPE} == "lld"
292WANT_LINKER_FREEBSD_VERSION_FILE= lib/clang/include/VCSVersion.inc
293WANT_LINKER_FREEBSD_VERSION!= \
294	awk '$$2 == "LLD_REVISION" {gsub(/"/, "", $$3); print $$3}' \
295	${SRCDIR}/${WANT_LINKER_FREEBSD_VERSION_FILE} || echo unknown
296WANT_LINKER_VERSION_FILE= lib/clang/include/lld/Common/Version.inc
297WANT_LINKER_VERSION!= \
298	awk '$$2 == "LLD_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
299	${SRCDIR}/${WANT_LINKER_VERSION_FILE} || echo unknown
300.else
301WANT_LINKER_FREEBSD_VERSION_FILE=
302WANT_LINKER_FREEBSD_VERSION=
303.endif
304.export WANT_LINKER_FREEBSD_VERSION WANT_LINKER_VERSION
305.endif	# !defined(WANT_LINKER_FREEBSD_VERSION)
306
307.if ${MK_SYSTEM_LINKER} == "yes" && \
308    defined(WANT_LINKER_FREEBSD_VERSION) && \
309    (${MK_LLD_BOOTSTRAP} == "yes") && \
310    !make(xdev*) && \
311    ${X_LINKER_TYPE} == ${WANT_LINKER_TYPE} && \
312    ${X_LINKER_VERSION} == ${WANT_LINKER_VERSION} && \
313    ${X_LINKER_FREEBSD_VERSION} == ${WANT_LINKER_FREEBSD_VERSION}
314# Everything matches, disable the bootstrap linker.
315MK_LLD_BOOTSTRAP=	no
316USING_SYSTEM_LINKER=	yes
317.endif	# ${WANT_LINKER_TYPE} == ${LINKER_TYPE}
318
319# WITH_SYSTEM_COMPILER / WITH_SYSTEM_LINKER - Handle defaults and debug.
320USING_SYSTEM_COMPILER?=	no
321USING_SYSTEM_LINKER?=	no
322
323TEST_SYSTEM_COMPILER_VARS= \
324	USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \
325	MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP MK_GCC_BOOTSTRAP \
326	WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \
327	WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \
328	CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \
329	COMPILER_FREEBSD_VERSION \
330	XCC X_COMPILER_TYPE X_COMPILER_FEATURES X_COMPILER_VERSION \
331	X_COMPILER_FREEBSD_VERSION
332TEST_SYSTEM_LINKER_VARS= \
333	USING_SYSTEM_LINKER MK_SYSTEM_LINKER \
334	MK_LLD_BOOTSTRAP MK_BINUTILS_BOOTSTRAP \
335	WANT_LINKER_TYPE WANT_LINKER_VERSION WANT_LINKER_VERSION_FILE \
336	WANT_LINKER_FREEBSD_VERSION WANT_LINKER_FREEBSD_VERSION_FILE \
337	LD LINKER_TYPE LINKER_FEATURES LINKER_VERSION \
338	LINKER_FREEBSD_VERSION \
339	XLD X_LINKER_TYPE X_LINKER_FEATURES X_LINKER_VERSION \
340	X_LINKER_FREEBSD_VERSION
341
342.for _t in compiler linker
343test-system-${_t}: .PHONY
344.for v in ${TEST_SYSTEM_${_t:tu}_VARS}
345	${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}"
346.endfor
347.endfor
348.if (make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \
349    make(toolchain) || make(_cross-tools))
350.if ${USING_SYSTEM_COMPILER} == "yes"
351.info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree.  Not bootstrapping a cross-compiler.
352.elif ${MK_CLANG_BOOTSTRAP} == "yes"
353.info SYSTEM_COMPILER: libclang will be built for bootstrapping a cross-compiler.
354.endif
355.if ${USING_SYSTEM_LINKER} == "yes"
356.info SYSTEM_LINKER: Determined that LD=${LD} matches the source tree.  Not bootstrapping a cross-linker.
357.elif ${MK_LLD_BOOTSTRAP} == "yes"
358.info SYSTEM_LINKER: libclang will be built for bootstrapping a cross-linker.
359.endif
360.endif
361
362# End WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD
363
364# Store some compiler metadata for use in installworld where we don't
365# want to invoke CC at all.
366_TOOLCHAIN_METADATA_VARS=	COMPILER_VERSION \
367				COMPILER_TYPE \
368				COMPILER_FEATURES \
369				COMPILER_FREEBSD_VERSION \
370				LINKER_VERSION \
371				LINKER_FEATURES \
372				LINKER_TYPE \
373				LINKER_FREEBSD_VERSION
374toolchain-metadata.mk: .PHONY .META
375	@: > ${.TARGET}
376	@echo ".info Using cached toolchain metadata from build at $$(hostname) on $$(date)" \
377	    > ${.TARGET}
378	@echo "_LOADED_TOOLCHAIN_METADATA=t" >> ${.TARGET}
379.for v in ${_TOOLCHAIN_METADATA_VARS}
380	@echo "${v}=${${v}}" >> ${.TARGET}
381	@echo "X_${v}=${X_${v}}" >> ${.TARGET}
382.endfor
383	@echo ".export ${_TOOLCHAIN_METADATA_VARS}" >> ${.TARGET}
384	@echo ".export ${_TOOLCHAIN_METADATA_VARS:C,^,X_,}" >> ${.TARGET}
385
386
387# We must do lib/ and libexec/ before bin/ in case of a mid-install error to
388# keep the users system reasonably usable.  For static->dynamic root upgrades,
389# we don't want to install a dynamic binary without rtld and the needed
390# libraries.  More commonly, for dynamic root, we don't want to install a
391# binary that requires a newer library version that hasn't been installed yet.
392# This ordering is not a guarantee though.  The only guarantee of a working
393# system here would require fine-grained ordering of all components based
394# on their dependencies.
395.if !empty(SUBDIR_OVERRIDE)
396SUBDIR=	${SUBDIR_OVERRIDE}
397.else
398SUBDIR=	lib libexec
399# Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR
400# of a LOCAL_DIRS directory.  This allows LOCAL_DIRS=foo and
401# LOCAL_LIB_DIRS=foo/lib to behave as expected.
402.for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|}
403_REDUNDANT_LIB_DIRS+=    ${LOCAL_LIB_DIRS:M${_DIR}*}
404.endfor
405.for _DIR in ${LOCAL_LIB_DIRS}
406.if ${_DIR} == ".WAIT" || (empty(_REDUNDANT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile))
407SUBDIR+=	${_DIR}
408.endif
409.endfor
410.if !defined(NO_ROOT) && (make(installworld) || make(install))
411# Ensure libraries are installed before progressing.
412SUBDIR+=.WAIT
413.endif
414SUBDIR+=bin
415.if ${MK_CDDL} != "no"
416SUBDIR+=cddl
417.endif
418SUBDIR+=gnu include
419.if ${MK_KERBEROS} != "no"
420SUBDIR+=kerberos5
421.endif
422.if ${MK_RESCUE} != "no"
423SUBDIR+=rescue
424.endif
425SUBDIR+=sbin
426.if ${MK_CRYPT} != "no"
427SUBDIR+=secure
428.endif
429.if !defined(NO_SHARE)
430SUBDIR+=share
431.endif
432.if ${MK_BOOT} != "no"
433SUBDIR+=stand
434.endif
435SUBDIR+=sys usr.bin usr.sbin
436.if ${MK_TESTS} != "no"
437SUBDIR+=	tests
438.endif
439
440# Local directories are built in parallel with the base system directories.
441# Users may insert a .WAIT directive at the beginning or elsewhere within
442# the LOCAL_DIRS and LOCAL_LIB_DIRS lists as needed.
443.for _DIR in ${LOCAL_DIRS}
444.if ${_DIR} == ".WAIT" || exists(${.CURDIR}/${_DIR}/Makefile)
445SUBDIR+=	${_DIR}
446.endif
447.endfor
448
449# We must do etc/ last as it hooks into building the man whatis file
450# by calling 'makedb' in share/man.  This is only relevant for
451# install/distribute so they build the whatis file after every manpage is
452# installed.
453.if make(installworld) || make(install)
454SUBDIR+=.WAIT
455.endif
456SUBDIR+=etc
457
458.endif	# !empty(SUBDIR_OVERRIDE)
459
460.if defined(NOCLEAN)
461.warning NOCLEAN option is deprecated. Use NO_CLEAN instead.
462NO_CLEAN=	${NOCLEAN}
463.endif
464.if defined(NO_CLEANDIR)
465CLEANDIR=	clean cleandepend
466.else
467CLEANDIR=	cleandir
468.endif
469
470.if defined(WORLDFAST)
471NO_CLEAN=	t
472NO_OBJWALK=	t
473.endif
474
475.if ${MK_META_MODE} == "yes"
476# If filemon is used then we can rely on the build being incremental-safe.
477# The .meta files will also track the build command and rebuild should
478# it change.
479.if empty(.MAKE.MODE:Mnofilemon)
480NO_CLEAN=	t
481.endif
482.endif
483.if defined(NO_OBJWALK) || ${MK_AUTO_OBJ} == "yes"
484NO_OBJWALK=	t
485NO_KERNELOBJ=	t
486.endif
487.if !defined(NO_OBJWALK)
488_obj=		obj
489.endif
490
491LOCAL_TOOL_DIRS?=
492PACKAGEDIR?=	${DESTDIR}/${DISTDIR}
493
494.if empty(SHELL:M*csh*)
495BUILDENV_SHELL?=${SHELL}
496.else
497BUILDENV_SHELL?=/bin/sh
498.endif
499
500.if !defined(_MKSHOWCONFIG)
501.if !defined(SVN_CMD) || empty(SVN_CMD)
502. for _P in /usr/bin /usr/local/bin
503.  for _S in svn svnlite
504.   if exists(${_P}/${_S})
505SVN_CMD=   ${_P}/${_S}
506.   endif
507.  endfor
508. endfor
509.export SVN_CMD
510.endif
511SVNFLAGS?=	-r HEAD
512.if !defined(VCS_REVISION) || empty(VCS_REVISION)
513.if !defined(SVNVERSION_CMD) || empty(SVNVERSION_CMD)
514. for _D in ${PATH:S,:, ,g}
515.  if exists(${_D}/svnversion)
516SVNVERSION_CMD?=${_D}/svnversion
517.  endif
518.  if exists(${_D}/svnliteversion)
519SVNVERSION_CMD?=${_D}/svnliteversion
520.  endif
521. endfor
522.endif
523_VCS_REVISION?=	$$(eval ${SVNVERSION_CMD} ${SRCDIR})
524. if !empty(_VCS_REVISION)
525VCS_REVISION=	$$(echo r${_VCS_REVISION})
526. endif
527.export VCS_REVISION
528.endif
529
530.if !defined(OSRELDATE)
531.if exists(/usr/include/osreldate.h)
532OSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
533		/usr/include/osreldate.h
534.else
535OSRELDATE=	0
536.endif
537.export OSRELDATE
538.endif
539
540# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION.
541.if !defined(_REVISION)
542_REVISION!=	${MAKE} -C ${SRCDIR}/release MK_AUTO_OBJ=no -V REVISION
543.export _REVISION
544.endif
545.if !defined(_BRANCH)
546_BRANCH!=	${MAKE} -C ${SRCDIR}/release MK_AUTO_OBJ=no -V BRANCH
547.export _BRANCH
548.endif
549.if !defined(SRCRELDATE)
550SRCRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
551		${SRCDIR}/sys/sys/param.h
552.export SRCRELDATE
553.endif
554.if !defined(VERSION)
555VERSION=	FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
556.export VERSION
557.endif
558
559.if !defined(PKG_VERSION)
560.if ${_BRANCH:MSTABLE*} || ${_BRANCH:MCURRENT*}
561TIMENOW=	%Y%m%d%H%M%S
562EXTRA_REVISION=	.s${TIMENOW:gmtime}
563.elif ${_BRANCH:MALPHA*}
564EXTRA_REVISION= _${_BRANCH:C/-ALPHA/.a/}
565.elif ${_BRANCH:MBETA*}
566EXTRA_REVISION= _${_BRANCH:C/-BETA/.b/}
567.elif ${_BRANCH:MRC*}
568EXTRA_REVISION= _${_BRANCH:C/-RC/.r/}
569.elif ${_BRANCH:MPRERELEASE*}
570EXTRA_REVISION= _${_BRANCH:C/-PRERELEASE/.p/}
571.elif ${_BRANCH:M*-p*}
572EXTRA_REVISION=	_${_BRANCH:C/.*-p([0-9]+$)/\1/}
573.endif
574PKG_VERSION=	${_REVISION}${EXTRA_REVISION}
575.endif
576.endif	# !defined(PKG_VERSION)
577
578.if !defined(_MKSHOWCONFIG)
579_CPUTYPE!=	MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} -f /dev/null \
580		-m ${.CURDIR}/share/mk MK_AUTO_OBJ=no -V CPUTYPE
581.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
582.error CPUTYPE global should be set with ?=.
583.endif
584.endif
585.if make(buildworld)
586BUILD_ARCH!=	uname -p
587.if ${MACHINE_ARCH} != ${BUILD_ARCH}
588.error To cross-build, set TARGET_ARCH.
589.endif
590.endif
591WORLDTMP?=	${OBJTOP}/tmp
592BPATH=		${CCACHE_WRAPPER_PATH_PFX}${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin
593XPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin
594
595# When building we want to find the cross tools before the host tools in ${BPATH}.
596# We also need to add UNIVERSE_TOOLCHAIN_PATH so that we can find the shared
597# toolchain files (clang, lld, etc.) during make universe/tinderbox
598STRICTTMPPATH=	${XPATH}:${BPATH}:${UNIVERSE_TOOLCHAIN_PATH}
599# We should not be using tools from /usr/bin accidentally since this could cause
600# the build to break on other systems that don't have that tool. For now we
601# still allow using the old behaviour (inheriting $PATH) if
602# BUILD_WITH_STRICT_TMPPATH is set to 0 but this will eventually be removed.
603
604# Currently strict $PATH can cause build failures and does not work yet with
605# USING_SYSTEM_LINKER/USING_SYSTEM_COMPILER. Once these issues have been
606# resolved it will be turned on by default.
607BUILD_WITH_STRICT_TMPPATH?=0
608.if ${BUILD_WITH_STRICT_TMPPATH} != 0
609TMPPATH=	${STRICTTMPPATH}
610.else
611TMPPATH=	${STRICTTMPPATH}:${PATH}
612.endif
613
614#
615# Avoid running mktemp(1) unless actually needed.
616# It may not be functional, e.g., due to new ABI
617# when in the middle of installing over this system.
618#
619.if make(distributeworld) || make(installworld) || make(stageworld)
620.if ${BUILD_WITH_STRICT_TMPPATH} != 0
621MKTEMP=${WORLDTMP}/legacy/usr/bin/mktemp
622.if !exists(${MKTEMP})
623.error "mktemp binary doesn't exist in expected location: ${MKTEMP}"
624.endif
625.else
626MKTEMP=mktemp
627.endif
628INSTALLTMP!=	${MKTEMP} -d -u -t install
629.endif
630
631.if make(stagekernel) || make(distributekernel)
632TAGS+=		kernel
633PACKAGE=	kernel
634.endif
635
636#
637# Building a world goes through the following stages
638#
639# 1. legacy stage [BMAKE]
640#	This stage is responsible for creating compatibility
641#	shims that are needed by the bootstrap-tools,
642#	build-tools and cross-tools stages. These are generally
643#	APIs that tools from one of those three stages need to
644#	build that aren't present on the host.
645# 1. bootstrap-tools stage [BMAKE]
646#	This stage is responsible for creating programs that
647#	are needed for backward compatibility reasons. They
648#	are not built as cross-tools.
649# 2. build-tools stage [TMAKE]
650#	This stage is responsible for creating the object
651#	tree and building any tools that are needed during
652#	the build process. Some programs are listed during
653#	this phase because they build binaries to generate
654#	files needed to build these programs. This stage also
655#	builds the 'build-tools' target rather than 'all'.
656# 3. cross-tools stage [XMAKE]
657#	This stage is responsible for creating any tools that
658#	are needed for building the system. A cross-compiler is one
659#	of them. This differs from build tools in two ways:
660#	1. the 'all' target is built rather than 'build-tools'
661#	2. these tools are installed into TMPPATH for stage 4.
662# 4. world stage [WMAKE]
663#	This stage actually builds the world.
664# 5. install stage (optional) [IMAKE]
665#	This stage installs a previously built world.
666#
667
668BOOTSTRAPPING?=	0
669# Keep these in sync
670MINIMUM_SUPPORTED_OSREL?= 1002501
671MINIMUM_SUPPORTED_REL?= 10.3
672
673# Common environment for world related stages
674CROSSENV+=	\
675		MACHINE_ARCH=${TARGET_ARCH} \
676		MACHINE=${TARGET} \
677		CPUTYPE=${TARGET_CPUTYPE}
678.if ${MK_META_MODE} != "no"
679# Don't rebuild build-tools targets during normal build.
680CROSSENV+=	BUILD_TOOLS_META=.NOMETA
681.endif
682.if defined(TARGET_CFLAGS)
683CROSSENV+=	${TARGET_CFLAGS}
684.endif
685.if (${TARGET} != ${MACHINE} && !defined(WITH_LOCAL_MODULES)) || \
686    defined(WITHOUT_LOCAL_MODULES)
687CROSSENV+=	LOCAL_MODULES=
688.endif
689
690BOOTSTRAPPING_OSRELDATE?=${OSRELDATE}
691
692# bootstrap-tools stage
693BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
694		TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \
695		PATH=${BPATH}:${PATH} \
696		WORLDTMP=${WORLDTMP} \
697		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
698# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile
699BSARGS= 	DESTDIR= \
700		OBJTOP='${WORLDTMP}/obj-tools' \
701		OBJROOT='$${OBJTOP}/' \
702		MAKEOBJDIRPREFIX= \
703		BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \
704		BWPHASE=${.TARGET:C,^_,,} \
705		SSP_CFLAGS= \
706		MK_HTML=no NO_LINT=yes MK_MAN=no \
707		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
708		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
709		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
710		MK_LLDB=no MK_RETPOLINE=no MK_TESTS=no \
711		MK_INCLUDES=yes
712
713BMAKE=		\
714		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
715		${BSARGS}
716.if empty(.MAKEOVERRIDES:MMK_LLVM_TARGET_ALL)
717BMAKE+=		MK_LLVM_TARGET_ALL=no
718.endif
719
720# build-tools stage
721TMAKE=		\
722		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
723		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
724		DESTDIR= \
725		BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \
726		BWPHASE=${.TARGET:C,^_,,} \
727		SSP_CFLAGS= \
728		-DNO_LINT \
729		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
730		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
731		MK_LLDB=no MK_RETPOLINE=no MK_TESTS=no
732
733# cross-tools stage
734# TOOLS_PREFIX set in BMAKE
735XMAKE=		${BMAKE} \
736		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
737		MK_CLANG_IS_CC=${MK_CLANG_BOOTSTRAP} \
738		MK_GDB=no MK_TESTS=no
739
740# kernel-tools stage
741KTMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
742		PATH=${BPATH}:${PATH} \
743		WORLDTMP=${WORLDTMP}
744KTMAKE=		\
745		TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \
746		${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
747		DESTDIR= \
748		OBJTOP='${WORLDTMP}/obj-kernel-tools' \
749		OBJROOT='$${OBJTOP}/' \
750		MAKEOBJDIRPREFIX= \
751		BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \
752		SSP_CFLAGS= \
753		MK_HTML=no -DNO_LINT MK_MAN=no \
754		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
755		-DNO_CPU_CFLAGS MK_RETPOLINE=no MK_WARNS=no MK_CTF=no
756
757# world stage
758WMAKEENV=	${CROSSENV} \
759		INSTALL="sh ${.CURDIR}/tools/install.sh" \
760		PATH=${TMPPATH} \
761		SYSROOT=${WORLDTMP}
762
763# make hierarchy
764HMAKE=		PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
765.if defined(NO_ROOT)
766HMAKE+=		PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
767.endif
768
769CROSSENV+=	CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCXXFLAGS} ${XCFLAGS}" \
770		CPP="${XCPP} ${XCFLAGS}" \
771		AS="${XAS}" AR="${XAR}" LD="${XLD}" LLVM_LINK="${XLLVM_LINK}" \
772		NM=${XNM} OBJCOPY="${XOBJCOPY}" \
773		RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \
774		SIZE="${XSIZE}"
775
776.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
777# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
778# directory, but the compiler will look in the right place for its
779# tools so we don't need to tell it where to look.
780BFLAGS+=	-B${CROSS_BINUTILS_PREFIX}
781.endif
782
783
784# The internal bootstrap compiler has a default sysroot set by TOOLS_PREFIX
785# and target set by TARGET/TARGET_ARCH.  However, there are several needs to
786# always pass an explicit --sysroot and -target.
787# - External compiler needs sysroot and target flags.
788# - External ld needs sysroot.
789# - To be clear about the use of a sysroot when using the internal compiler.
790# - Easier debugging.
791# - Allowing WITH_SYSTEM_COMPILER+WITH_META_MODE to work together due to
792#   the flip-flopping build command when sometimes using external and
793#   sometimes using internal.
794# - Allow using lld which has no support for default paths.
795.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX})
796BFLAGS+=	-B${WORLDTMP}/usr/bin
797.endif
798.if ${WANT_COMPILER_TYPE} == gcc || \
799    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
800.elif ${WANT_COMPILER_TYPE} == clang || \
801    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang)
802XCFLAGS+=	-target ${TARGET_TRIPLE}
803.endif
804XCFLAGS+=	--sysroot=${WORLDTMP}
805
806.if !empty(BFLAGS)
807XCFLAGS+=	${BFLAGS}
808.endif
809
810.if ${MK_LIB32} == "yes"
811_LIBCOMPAT= 32
812.include "Makefile.libcompat"
813.elif ${MK_LIBSOFT} == "yes"
814_LIBCOMPAT= SOFT
815.include "Makefile.libcompat"
816.endif
817
818# META_MODE normally ignores host file changes since every build updates
819# timestamps (see NO_META_IGNORE_HOST in sys.mk).  There are known times
820# when the ABI breaks though that we want to force rebuilding WORLDTMP
821# to get updated host tools.
822.if ${MK_META_MODE} == "yes" && defined(NO_CLEAN) && \
823    !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) && \
824    !defined(_MKSHOWCONFIG)
825# r318736 - ino64 major ABI breakage
826META_MODE_BAD_ABI_VERS+=	1200031
827
828.if !defined(OBJDIR_HOST_OSRELDATE)
829.if exists(${OBJTOP}/host-osreldate.h)
830OBJDIR_HOST_OSRELDATE!=	\
831    awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
832    ${OBJTOP}/host-osreldate.h
833.elif exists(${WORLDTMP}/usr/include/osreldate.h)
834OBJDIR_HOST_OSRELDATE=	0
835.endif
836.export OBJDIR_HOST_OSRELDATE
837.endif
838
839# Note that this logic is the opposite of normal BOOTSTRAP handling.  We want
840# to compare the WORLDTMP's OSRELDATE to the host's OSRELDATE.  If the WORLDTMP
841# is older than the ABI-breakage OSRELDATE of the HOST then we rebuild.
842.if defined(OBJDIR_HOST_OSRELDATE)
843.for _ver in ${META_MODE_BAD_ABI_VERS}
844.if ${OSRELDATE} >= ${_ver} && ${OBJDIR_HOST_OSRELDATE} < ${_ver}
845_meta_mode_need_rebuild=	${_ver}
846.endif
847.endfor
848.if defined(_meta_mode_need_rebuild)
849.info META_MODE: Rebuilding host tools due to ABI breakage in __FreeBSD_version ${_meta_mode_need_rebuild}.
850NO_META_IGNORE_HOST_HEADERS=	1
851.export NO_META_IGNORE_HOST_HEADERS
852.endif	# defined(_meta_mode_need_rebuild)
853.endif	# defined(OBJDIR_HOST_OSRELDATE)
854.endif	# ${MK_META_MODE} == "yes" && defined(NO_CLEAN) ...
855# This is only used for META_MODE+filemon to track what the oldest
856# __FreeBSD_version is in WORLDTMP.  This purposely does NOT have
857# a make dependency on /usr/include/osreldate.h as the file should
858# only be copied when it is missing or meta mode determines it has changed.
859# Since host files are normally ignored without NO_META_IGNORE_HOST
860# the file will never be updated unless that flag is specified.  This
861# allows tracking the oldest osreldate to force rebuilds via
862# META_MODE_BADABI_REVS above.
863host-osreldate.h: # DO NOT ADD /usr/include/osreldate.h here
864	@cp -f /usr/include/osreldate.h ${.TARGET}
865
866WMAKE=		${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
867		BWPHASE=${.TARGET:C,^_,,} \
868		DESTDIR=${WORLDTMP}
869
870IMAKEENV=	${CROSSENV}
871IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1 \
872		${IMAKE_INSTALL} ${IMAKE_MTREE}
873.if empty(.MAKEFLAGS:M-n)
874IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
875		LD_LIBRARY_PATH=${INSTALLTMP} \
876		PATH_LOCALE=${INSTALLTMP}/locale
877IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
878.else
879IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
880.endif
881
882# When generating install media, do not allow user and group information from
883# the build host to affect the contents of the distribution.
884.if make(distributeworld) || make(distrib-dirs) || make(distribution)
885DB_FROM_SRC=	yes
886.endif
887
888.if defined(DB_FROM_SRC)
889INSTALLFLAGS+=	-N ${.CURDIR}/etc
890MTREEFLAGS+=	-N ${.CURDIR}/etc
891.endif
892_INSTALL_DDIR=	${DESTDIR}/${DISTDIR}
893INSTALL_DDIR=	${_INSTALL_DDIR:S://:/:g:C:/$::}
894.if defined(NO_ROOT)
895METALOG?=	${DESTDIR}/${DISTDIR}/METALOG
896METALOG:=	${METALOG:C,//+,/,g}
897IMAKE+=		-DNO_ROOT METALOG=${METALOG}
898INSTALLFLAGS+=	-U -M ${METALOG} -D ${INSTALL_DDIR}
899MTREEFLAGS+=	-W
900.endif
901.if defined(BUILD_PKGS)
902INSTALLFLAGS+=	-h sha256
903.endif
904.if defined(DB_FROM_SRC) || defined(NO_ROOT)
905IMAKE_INSTALL=	INSTALL="install ${INSTALLFLAGS}"
906IMAKE_MTREE=	MTREE_CMD="mtree ${MTREEFLAGS}"
907.endif
908
909DESTDIR_MTREEFLAGS=	-deU
910# When creating worldtmp we don't need to set the directories as owned by root
911# so we also pass -W
912WORLDTMP_MTREEFLAGS=	-deUW
913.if defined(NO_ROOT)
914# When building with -DNO_ROOT we shouldn't be changing the directories
915# that are created by mtree to be owned by root/wheel.
916DESTDIR_MTREEFLAGS+=	-W
917.endif
918MTREE?=	mtree
919.if ${BUILD_WITH_STRICT_TMPPATH} != 0
920MTREE=	${WORLDTMP}/legacy/usr/sbin/mtree
921.endif
922WORLDTMP_MTREE=	${MTREE} ${WORLDTMP_MTREEFLAGS}
923DESTDIR_MTREE=	${MTREE} ${DESTDIR_MTREEFLAGS}
924
925# kernel stage
926KMAKEENV=	${WMAKEENV:NSYSROOT=*}
927KMAKE=		${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
928
929#
930# buildworld
931#
932# Attempt to rebuild the entire system, with reasonable chance of
933# success, regardless of how old your existing system is.
934#
935_sanity_check: .PHONY .MAKE
936.if ${.CURDIR:C/[^,]//g} != ""
937#	The m4 build of sendmail files doesn't like it if ',' is used
938#	anywhere in the path of it's files.
939	@echo
940	@echo "*** Error: path to source tree contains a comma ','"
941	@echo
942	@false
943.elif ${.CURDIR:M*\:*} != ""
944#	Using ':' leaks into PATH and breaks finding cross-tools.
945	@echo
946	@echo "*** Error: path to source tree contains a colon ':'"
947	@echo
948	@false
949.endif
950
951# Our current approach to dependency tracking cannot cope with certain source
952# tree changes, particularly with respect to removing source files and
953# replacing generated files.  Handle these cases here in an ad-hoc fashion.
954_cleanobj_fast_depend_hack: .PHONY
955# Syscall stubs rewritten in C and obsolete MD assembly implementations
956# Date      SVN Rev  Syscalls/Changes
957# 20191009  r353340  removal of opensolaris_atomic.S (also r353381)
958.if ${MACHINE} != i386
959.for f in opensolaris_atomic
960	@if [ -e "${OBJTOP}/cddl/lib/libzpool/.depend.${f}.o" ] && \
961	    egrep -qw 'opensolaris_atomic\.S' ${OBJTOP}/cddl/lib/libzpool/.depend.${f}.o; then \
962		echo "Removing stale dependencies for opensolaris_atomic"; \
963		rm -f ${OBJTOP}/cddl/lib/libzpool/.depend.${f}.* \
964		   ${LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/cddl/lib/libzpool/.depend.${f}.*}; \
965	fi
966.endfor
967.endif
968# 20190925  r352689  removal of obsolete i386 memchr.S
969.for f in memchr
970	@if [ -e "${OBJTOP}/lib/libc/.depend.${f}.o" ] && \
971	    egrep -qw 'i386/string/memchr\.S' ${OBJTOP}/lib/libc/.depend.${f}.o; then \
972		echo "Removing stale dependencies for memchr"; \
973		rm -f ${OBJTOP}/lib/libc/.depend.${f}.*; \
974	fi
975.if defined(_LIBCOMPAT)
976	@if [ -e "${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.o" ] && \
977	    egrep -qw 'i386/string/memchr\.S' ${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.o; then \
978		echo "Removing stale dependencies for memchr"; \
979		rm -f ${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.*; \
980	fi
981.endif
982.endfor
983# 20180604  r334626  brk sbrk
984# 20190916  r352703  shm_open
985.for f in brk sbrk shm_open
986	@if [ -e "${OBJTOP}/lib/libc/.depend.${f}.o" ] && \
987	    egrep -qw '${f}\.[sS]' ${OBJTOP}/lib/libc/.depend.${f}.o; then \
988		echo "Removing stale dependencies for ${f} syscall wrappers"; \
989		rm -f ${OBJTOP}/lib/libc/.depend.${f}.* \
990		   ${_LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.*}; \
991	fi
992.endfor
993# 20181013  r339348  bcopy reimplemented as .c
994.for f in bcopy memcpy memmove
995	@if [ -e "${OBJTOP}/lib/libc/.depend.${f}.o" ] && \
996	    egrep -qw 'bcopy\.[sS]' ${OBJTOP}/lib/libc/.depend.${f}.o; then \
997		echo "Removing stale dependencies for bcopy"; \
998		rm -f ${OBJTOP}/lib/libc/.depend.${f}.* \
999		   ${_LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.*}; \
1000	fi
1001.endfor
1002# 20181115  r340463  bzero reimplemented as .c
1003	@if [ -e "${OBJTOP}/lib/libc/.depend.bzero.o" ] && \
1004	    egrep -qw 'bzero\.[sS]' ${OBJTOP}/lib/libc/.depend.bzero.o; then \
1005		echo "Removing stale dependencies for bzero"; \
1006		rm -f ${OBJTOP}/lib/libc/.depend.bzero.* \
1007		   ${_LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/lib/libc/.depend.bzero.*}; \
1008	fi
1009# 20181009 track migration from ntp's embedded libevent to updated one
1010	@if [ -e "${OBJTOP}/usr.sbin/ntp/libntpevent/.depend.bufferevent_openssl.o" ] && \
1011	    egrep -q 'contrib/ntp/sntp/libevent/bufferevent_openssl.c' \
1012	    ${OBJTOP}/usr.sbin/ntp/libntpevent/.depend.bufferevent_openssl.o ; then \
1013		echo "Removing stale libevent dependencies"; \
1014		rm -f ${OBJTOP}/usr.sbin/ntp/libntpevent/.depend.*; \
1015	fi
1016
1017# 20181209  r341759 track migration across wpa update
1018	@if [ -e "${OBJTOP}/usr.sbin/wpa/wpa_supplicant/.depend.rrm.o" ] && \
1019	    egrep -q 'src/ap/rrm.c' \
1020	    ${OBJTOP}/usr.sbin/wpa/wpa_supplicant/.depend.rrm.o; then \
1021		echo "Removing stale wpa dependencies"; \
1022		rm -f ${OBJTOP}/usr.sbin/wpa/*/.depend*; \
1023	fi
1024
1025_worldtmp: .PHONY
1026	@echo
1027	@echo "--------------------------------------------------------------"
1028	@echo ">>> Rebuilding the temporary build tree"
1029	@echo "--------------------------------------------------------------"
1030.if !defined(NO_CLEAN)
1031	rm -rf ${WORLDTMP}
1032.else
1033# Note: for delete-old we need to set $PATH to also include the host $PATH
1034# since otherwise a partial build with missing symlinks in ${WORLDTMP}/legacy/
1035# will fail to run due to missing binaries. $WMAKE sets PATH to only ${TMPPATH}
1036# so we remove that assingnment from $WMAKE and prepend the new $PATH
1037	${_+_}@if [ -e "${WORLDTMP}" ]; then \
1038		echo ">>> Deleting stale files in build tree..."; \
1039		cd ${.CURDIR}; env PATH=${TMPPATH}:${PATH} ${WMAKE:NPATH=*} \
1040		    _NO_INCLUDE_COMPILERMK=t -DBATCH_DELETE_OLD_FILES delete-old \
1041		    delete-old-libs >/dev/null; \
1042	fi
1043	rm -rf ${WORLDTMP}/legacy/usr/include
1044.if ${USING_SYSTEM_COMPILER} == "yes"
1045.for cc in cc c++
1046	if [ -x ${WORLDTMP}/usr/bin/${cc} ]; then \
1047		inum=$$(stat -f %i ${WORLDTMP}/usr/bin/${cc}); \
1048		find ${WORLDTMP}/usr/bin -inum $${inum} -delete; \
1049	fi
1050.endfor
1051.endif	# ${USING_SYSTEM_COMPILER} == "yes"
1052.if ${USING_SYSTEM_LINKER} == "yes"
1053	@rm -f ${WORLDTMP}/usr/bin/ld ${WORLDTMP}/usr/bin/ld.lld
1054.endif	# ${USING_SYSTEM_LINKER} == "yes"
1055.endif	# !defined(NO_CLEAN)
1056	@mkdir -p ${WORLDTMP}
1057	@touch ${WORLDTMP}/${.TARGET}
1058# We can't use mtree to create the worldtmp directories since it may not be
1059# available on the target system (this happens e.g. when building on non-FreeBSD)
1060	cd ${.CURDIR}/tools/build; \
1061	    ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy installdirs
1062# In order to build without inheriting $PATH we need to add symlinks to the host
1063# tools in $WORLDTMP for the tools that we don't build during bootstrap-tools
1064	cd ${.CURDIR}/tools/build; \
1065	    ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy host-symlinks
1066
1067_legacy:
1068	@echo
1069	@echo "--------------------------------------------------------------"
1070	@echo ">>> stage 1.1: legacy release compatibility shims"
1071	@echo "--------------------------------------------------------------"
1072	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
1073_bootstrap-tools:
1074	@echo
1075	@echo "--------------------------------------------------------------"
1076	@echo ">>> stage 1.2: bootstrap tools"
1077	@echo "--------------------------------------------------------------"
1078	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
1079	mkdir -p ${WORLDTMP}/usr ${WORLDTMP}/lib/casper ${WORLDTMP}/lib/geom
1080	${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1081	    -p ${WORLDTMP}/usr >/dev/null
1082	${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1083	    -p ${WORLDTMP}/usr/include >/dev/null
1084	ln -sf ${.CURDIR}/sys ${WORLDTMP}
1085.if ${MK_DEBUG_FILES} != "no"
1086	${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1087	    -p ${WORLDTMP}/usr/lib >/dev/null
1088.endif
1089.for _mtree in ${LOCAL_MTREE}
1090	${WORLDTMP_MTREE} -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
1091.endfor
1092_cleanobj:
1093.if !defined(NO_CLEAN)
1094	@echo
1095	@echo "--------------------------------------------------------------"
1096	@echo ">>> stage 2.1: cleaning up the object tree"
1097	@echo "--------------------------------------------------------------"
1098	# Avoid including bsd.compiler.mk in clean and obj with _NO_INCLUDE_COMPILERMK
1099	# since the restricted $PATH might not contain a valid cc binary
1100	${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t ${CLEANDIR}
1101.if defined(_LIBCOMPAT)
1102	${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} _NO_INCLUDE_COMPILERMK=t -f Makefile.inc1 ${CLEANDIR}
1103.endif
1104.else
1105	${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack
1106.endif	# !defined(NO_CLEAN)
1107_obj:
1108	@echo
1109	@echo "--------------------------------------------------------------"
1110	@echo ">>> stage 2.2: rebuilding the object tree"
1111	@echo "--------------------------------------------------------------"
1112	${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t obj
1113_build-tools:
1114	@echo
1115	@echo "--------------------------------------------------------------"
1116	@echo ">>> stage 2.3: build tools"
1117	@echo "--------------------------------------------------------------"
1118	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
1119_cross-tools:
1120	@echo
1121	@echo "--------------------------------------------------------------"
1122	@echo ">>> stage 3: cross tools"
1123	@echo "--------------------------------------------------------------"
1124	@rm -f ${OBJTOP}/toolchain-metadata.mk
1125	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
1126	${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
1127_build-metadata:
1128	@echo
1129	@echo "--------------------------------------------------------------"
1130	@echo ">>> stage 3.1: recording build metadata"
1131	@echo "--------------------------------------------------------------"
1132	${_+_}cd ${.CURDIR}; ${WMAKE} toolchain-metadata.mk
1133	${_+_}cd ${.CURDIR}; ${WMAKE} host-osreldate.h
1134_includes:
1135	@echo
1136	@echo "--------------------------------------------------------------"
1137	@echo ">>> stage 4.1: building includes"
1138	@echo "--------------------------------------------------------------"
1139# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need
1140# headers from default SUBDIR.  Do SUBDIR_OVERRIDE includes last.
1141	${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \
1142	    MK_INCLUDES=yes includes
1143.if !empty(SUBDIR_OVERRIDE) && make(buildworld)
1144	${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes
1145.endif
1146_libraries:
1147	@echo
1148	@echo "--------------------------------------------------------------"
1149	@echo ">>> stage 4.2: building libraries"
1150	@echo "--------------------------------------------------------------"
1151	${_+_}cd ${.CURDIR}; \
1152	    ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
1153	    MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} libraries
1154everything: .PHONY
1155	@echo
1156	@echo "--------------------------------------------------------------"
1157	@echo ">>> stage 4.4: building everything"
1158	@echo "--------------------------------------------------------------"
1159	${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all
1160
1161WMAKE_TGTS=
1162.if !defined(WORLDFAST)
1163WMAKE_TGTS+=	_sanity_check _worldtmp _legacy
1164.if empty(SUBDIR_OVERRIDE)
1165WMAKE_TGTS+=	_bootstrap-tools
1166.endif
1167WMAKE_TGTS+=	_cleanobj
1168.if !defined(NO_OBJWALK)
1169WMAKE_TGTS+=	_obj
1170.endif
1171WMAKE_TGTS+=	_build-tools _cross-tools
1172WMAKE_TGTS+=	_build-metadata
1173WMAKE_TGTS+=	_includes
1174.endif
1175.if !defined(NO_LIBS)
1176WMAKE_TGTS+=	_libraries
1177.endif
1178.if defined(_LIBCOMPAT) && empty(SUBDIR_OVERRIDE)
1179WMAKE_TGTS+=	build${libcompat}
1180.endif
1181WMAKE_TGTS+=	everything
1182
1183# record buildworld time in seconds
1184.if make(buildworld)
1185_BUILDWORLD_START!= date '+%s'
1186.export _BUILDWORLD_START
1187.endif
1188
1189buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY
1190.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
1191
1192buildworld_prologue: .PHONY
1193	@echo "--------------------------------------------------------------"
1194	@echo ">>> World build started on `LC_ALL=C date`"
1195	@echo "--------------------------------------------------------------"
1196
1197buildworld_epilogue: .PHONY
1198	@echo
1199	@echo "--------------------------------------------------------------"
1200	@echo ">>> World build completed on `LC_ALL=C date`"
1201	@seconds=$$(($$(date '+%s') - ${_BUILDWORLD_START})); \
1202	  echo -n ">>> World built in $$seconds seconds, "; \
1203	  echo "ncpu: $$(sysctl -n hw.ncpu)${.MAKE.JOBS:S/^/, make -j/}"
1204	@echo "--------------------------------------------------------------"
1205
1206#
1207# We need to have this as a target because the indirection between Makefile
1208# and Makefile.inc1 causes the correct PATH to be used, rather than a
1209# modification of the current environment's PATH.  In addition, we need
1210# to quote multiword values.
1211#
1212buildenvvars: .PHONY
1213	@echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@}
1214
1215.if ${.TARGETS:Mbuildenv}
1216.if ${.MAKEFLAGS:M-j}
1217.error The buildenv target is incompatible with -j
1218.endif
1219.endif
1220BUILDENV_DIR?=	${.CURDIR}
1221#
1222# Note: make will report any errors the shell reports. This can
1223# be odd if the last command in an interactive shell generates an
1224# error or is terminated by SIGINT. These reported errors look bad,
1225# but are harmless. Allowing them also allows BUIDLENV_SHELL to
1226# be a complex command whose status will be returned to the caller.
1227# Some scripts in tools rely on this behavior to report build errors.
1228#
1229buildenv: .PHONY
1230	@echo Entering world for ${TARGET_ARCH}:${TARGET}
1231.if ${BUILDENV_SHELL:M*zsh*}
1232	@echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE}
1233.endif
1234	@cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL}
1235
1236TOOLCHAIN_TGTS=	${WMAKE_TGTS:Neverything:Nbuild${libcompat}}
1237toolchain: ${TOOLCHAIN_TGTS} .PHONY
1238KERNEL_TOOLCHAIN_TGTS=	${TOOLCHAIN_TGTS:N_obj:N_cleanobj:N_includes:N_libraries}
1239.if make(kernel-toolchain)
1240.ORDER: ${KERNEL_TOOLCHAIN_TGTS}
1241.endif
1242kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY
1243
1244#
1245# installcheck
1246#
1247# Checks to be sure system is ready for installworld/installkernel.
1248#
1249installcheck: _installcheck_world _installcheck_kernel .PHONY
1250_installcheck_world: .PHONY
1251	@echo "--------------------------------------------------------------"
1252	@echo ">>> Install check world"
1253	@echo "--------------------------------------------------------------"
1254_installcheck_kernel: .PHONY
1255	@echo "--------------------------------------------------------------"
1256	@echo ">>> Install check kernel"
1257	@echo "--------------------------------------------------------------"
1258
1259#
1260# Require DESTDIR to be set if installing for a different architecture or
1261# using the user/group database in the source tree.
1262#
1263.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
1264    defined(DB_FROM_SRC)
1265.if !make(distributeworld)
1266_installcheck_world: __installcheck_DESTDIR
1267_installcheck_kernel: __installcheck_DESTDIR
1268__installcheck_DESTDIR: .PHONY
1269.if !defined(DESTDIR) || empty(DESTDIR)
1270	@echo "ERROR: Please set DESTDIR!"; \
1271	false
1272.endif
1273.endif
1274.endif
1275
1276.if !defined(DB_FROM_SRC)
1277#
1278# Check for missing UIDs/GIDs.
1279#
1280CHECK_UIDS=	auditdistd
1281CHECK_GIDS=	audit
1282CHECK_UIDS+=	ntpd
1283CHECK_GIDS+=	ntpd
1284CHECK_UIDS+=	proxy
1285CHECK_GIDS+=	proxy authpf
1286CHECK_UIDS+=	smmsp
1287CHECK_GIDS+=	smmsp
1288CHECK_UIDS+=	unbound
1289CHECK_GIDS+=	unbound
1290_installcheck_world: __installcheck_UGID
1291__installcheck_UGID: .PHONY
1292.for uid in ${CHECK_UIDS}
1293	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
1294		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
1295		false; \
1296	fi
1297.endfor
1298.for gid in ${CHECK_GIDS}
1299	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
1300		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
1301		false; \
1302	fi
1303.endfor
1304.endif
1305#
1306# If installing over the running system (DESTDIR is / or unset) and the install
1307# includes rescue, try running rescue from the objdir as a sanity check.  If
1308# rescue is not functional (e.g., because it depends on a system call not
1309# supported by the currently running kernel), abort the installation.
1310#
1311.if !make(distributeworld) && ${MK_RESCUE} != "no" && \
1312    (empty(DESTDIR) || ${DESTDIR} == "/") && empty(BYPASS_INSTALLCHECK_SH)
1313_installcheck_world: __installcheck_sh_check
1314__installcheck_sh_check: .PHONY
1315	@if [ "`${OBJTOP}/rescue/rescue/rescue sh -c 'echo OK'`" != \
1316	    OK ]; then \
1317		echo "rescue/sh check failed, installation aborted" >&2; \
1318		false; \
1319	fi
1320.endif
1321
1322#
1323# Required install tools to be saved in a scratch dir for safety.
1324#
1325.if ${MK_ZONEINFO} != "no"
1326_zoneinfo=	zic tzsetup
1327.endif
1328
1329ITOOLS=	[ awk cap_mkdb cat chflags chmod chown cmp cp \
1330	date echo egrep find grep id install ${_install-info} \
1331	ln make mkdir mtree mv pwd_mkdb \
1332	rm sed services_mkdb sh sort strip sysctl test true uname wc ${_zoneinfo} \
1333	${LOCAL_ITOOLS}
1334
1335# Needed for share/man
1336.if ${MK_MAN_UTILS} != "no"
1337ITOOLS+=makewhatis
1338.endif
1339
1340#
1341# distributeworld
1342#
1343# Distributes everything compiled by a `buildworld'.
1344#
1345# installworld
1346#
1347# Installs everything compiled by a 'buildworld'.
1348#
1349
1350# Non-base distributions produced by the base system
1351EXTRA_DISTRIBUTIONS=
1352.if defined(_LIBCOMPAT)
1353EXTRA_DISTRIBUTIONS+=	lib${libcompat}
1354.endif
1355.if ${MK_TESTS} != "no"
1356EXTRA_DISTRIBUTIONS+=	tests
1357.endif
1358
1359DEBUG_DISTRIBUTIONS=
1360.if ${MK_DEBUG_FILES} != "no"
1361DEBUG_DISTRIBUTIONS+=	base ${EXTRA_DISTRIBUTIONS:S,tests,,}
1362.endif
1363
1364MTREE_MAGIC?=	mtree 2.0
1365
1366distributeworld installworld stageworld: _installcheck_world .PHONY
1367	mkdir -p ${INSTALLTMP}
1368	progs=$$(for prog in ${ITOOLS}; do \
1369		if progpath=`which $$prog`; then \
1370			echo $$progpath; \
1371		else \
1372			echo "Required tool $$prog not found in PATH." >&2; \
1373			exit 1; \
1374		fi; \
1375	    done); \
1376	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
1377	    while read line; do \
1378		set -- $$line; \
1379		if [ "$$2 $$3" != "not found" ]; then \
1380			echo $$2; \
1381		else \
1382			echo "Required library $$1 not found." >&2; \
1383			exit 1; \
1384		fi; \
1385	    done); \
1386	cp $$libs $$progs ${INSTALLTMP}
1387	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
1388.if defined(NO_ROOT)
1389	-mkdir -p ${METALOG:H}
1390	echo "#${MTREE_MAGIC}" > ${METALOG}
1391.endif
1392.if make(distributeworld)
1393.for dist in ${EXTRA_DISTRIBUTIONS}
1394	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
1395	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1396	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
1397	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1398	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
1399	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1400	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
1401.if ${MK_DEBUG_FILES} != "no"
1402	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1403	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
1404.endif
1405.if defined(_LIBCOMPAT)
1406	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
1407	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
1408.if ${MK_DEBUG_FILES} != "no"
1409	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
1410	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null
1411.endif
1412.endif
1413.if ${MK_TESTS} != "no" && ${dist} == "tests"
1414	-mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
1415	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1416	    -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
1417.if ${MK_DEBUG_FILES} != "no"
1418	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1419	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null
1420.endif
1421.endif
1422.if defined(NO_ROOT)
1423	${IMAKEENV} ${MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
1424	    sed -e 's#^\./#./${dist}/#' >> ${METALOG}
1425	${IMAKEENV} ${MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
1426	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1427	${IMAKEENV} ${MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
1428	    sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
1429.if defined(_LIBCOMPAT)
1430	${IMAKEENV} ${MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \
1431	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1432.endif
1433.endif
1434.endfor
1435	-mkdir ${DESTDIR}/${DISTDIR}/base
1436	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1437	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
1438	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
1439	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
1440	${INSTALL_SYMLINK} ${INSTALLFLAGS} usr/src/sys ${INSTALL_DDIR}/base/sys
1441.endif
1442	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
1443	    ${IMAKEENV} rm -rf ${INSTALLTMP}
1444.if make(distributeworld)
1445.for dist in ${EXTRA_DISTRIBUTIONS}
1446	find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete
1447.endfor
1448.if defined(NO_ROOT)
1449.for dist in base ${EXTRA_DISTRIBUTIONS}
1450	@# For each file that exists in this dist, print the corresponding
1451	@# line from the METALOG.  This relies on the fact that
1452	@# a line containing only the filename will sort immediately before
1453	@# the relevant mtree line.
1454	cd ${DESTDIR}/${DISTDIR}; \
1455	find ./${dist} | sort -u ${METALOG} - | \
1456	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1457	${DESTDIR}/${DISTDIR}/${dist}.meta
1458.endfor
1459.for dist in ${DEBUG_DISTRIBUTIONS}
1460	@# For each file that exists in this dist, print the corresponding
1461	@# line from the METALOG.  This relies on the fact that
1462	@# a line containing only the filename will sort immediately before
1463	@# the relevant mtree line.
1464	cd ${DESTDIR}/${DISTDIR}; \
1465	find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
1466	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1467	${DESTDIR}/${DISTDIR}/${dist}.debug.meta
1468.endfor
1469.endif
1470.endif
1471
1472packageworld: .PHONY
1473.for dist in base ${EXTRA_DISTRIBUTIONS}
1474.if defined(NO_ROOT)
1475	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1476	    tar cvf - --exclude usr/lib/debug \
1477	    @${DESTDIR}/${DISTDIR}/${dist}.meta | \
1478	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1479.else
1480	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1481	    tar cvf - --exclude usr/lib/debug . | \
1482	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1483.endif
1484.endfor
1485
1486.for dist in ${DEBUG_DISTRIBUTIONS}
1487. if defined(NO_ROOT)
1488	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1489	    tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
1490	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1491. else
1492	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1493	    tar cvLf - usr/lib/debug | \
1494	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1495. endif
1496.endfor
1497
1498makeman: .PHONY
1499	${_+_}cd ${.CURDIR}/tools/build/options; sh makeman > \
1500	    ${.CURDIR}/share/man/man5/src.conf.5
1501
1502.if make(sysent)
1503.include <src.lua.mk>
1504.endif
1505
1506_sysent_PATH=	${WORLDTMP}/legacy/usr/libexec:/usr/libexec:${PATH}
1507_sysent_dirs=	sys/kern
1508_sysent_dirs+=	sys/compat/freebsd32
1509_sysent_dirs+=	sys/compat/cloudabi32	\
1510		sys/compat/cloudabi64
1511_sysent_dirs+=	sys/amd64/linux		\
1512		sys/amd64/linux32	\
1513		sys/arm/linux		\
1514		sys/arm64/linux		\
1515		sys/i386/linux
1516sysent: .PHONY
1517.for _dir in ${_sysent_dirs}
1518	@echo "${MAKE} -C ${.CURDIR}/${_dir} sysent"
1519	${_+_}@env PATH=${_sysent_PATH} LUA=${LUA_CMD} \
1520	    ${MAKE} -C ${.CURDIR}/${_dir} sysent
1521.endfor
1522
1523#
1524# reinstall
1525#
1526# If you have a build server, you can NFS mount the source and obj directories
1527# and do a 'make reinstall' on the *client* to install new binaries from the
1528# most recent server build.
1529#
1530restage reinstall: .MAKE .PHONY
1531	@echo "--------------------------------------------------------------"
1532	@echo ">>> Making hierarchy"
1533	@echo "--------------------------------------------------------------"
1534	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1535	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
1536.if make(restage)
1537	@echo "--------------------------------------------------------------"
1538	@echo ">>> Making distribution"
1539	@echo "--------------------------------------------------------------"
1540	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1541	    LOCAL_MTREE=${LOCAL_MTREE:Q} distribution
1542.endif
1543	@echo
1544	@echo "--------------------------------------------------------------"
1545	@echo ">>> Installing everything started on `LC_ALL=C date`"
1546	@echo "--------------------------------------------------------------"
1547	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
1548.if defined(_LIBCOMPAT)
1549	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
1550.endif
1551	@echo "--------------------------------------------------------------"
1552	@echo ">>> Installing everything completed on `LC_ALL=C date`"
1553	@echo "--------------------------------------------------------------"
1554
1555redistribute: .MAKE .PHONY
1556	@echo "--------------------------------------------------------------"
1557	@echo ">>> Distributing everything"
1558	@echo "--------------------------------------------------------------"
1559	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
1560.if defined(_LIBCOMPAT)
1561	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \
1562	    DISTRIBUTION=lib${libcompat}
1563.endif
1564
1565distrib-dirs distribution: .MAKE .PHONY
1566	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1567	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1568.if make(distribution)
1569	${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1570		${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1571		METALOG=${METALOG} MK_TESTS=no installconfig
1572.endif
1573
1574#
1575# buildkernel and installkernel
1576#
1577# Which kernels to build and/or install is specified by setting
1578# KERNCONF. If not defined a GENERIC kernel is built/installed.
1579# Only the existing (depending TARGET) config files are used
1580# for building kernels and only the first of these is designated
1581# as the one being installed.
1582#
1583# Note that we have to use TARGET instead of TARGET_ARCH when
1584# we're in kernel-land. Since only TARGET_ARCH is (expected) to
1585# be set to cross-build, we have to make sure TARGET is set
1586# properly.
1587
1588.if defined(KERNFAST)
1589NO_KERNELCLEAN=	t
1590NO_KERNELCONFIG=	t
1591NO_KERNELOBJ=		t
1592# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1593.if !defined(KERNCONF) && ${KERNFAST} != "1"
1594KERNCONF=${KERNFAST}
1595.endif
1596.endif
1597.if ${TARGET_ARCH} == "powerpc64"
1598KERNCONF?=	GENERIC64
1599.else
1600KERNCONF?=	GENERIC
1601.endif
1602INSTKERNNAME?=	kernel
1603
1604KERNSRCDIR?=	${.CURDIR}/sys
1605KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
1606KRNLOBJDIR=	${OBJTOP}${KERNSRCDIR:C,^${.CURDIR},,}
1607KERNCONFDIR?=	${KRNLCONFDIR}
1608
1609BUILDKERNELS=
1610INSTALLKERNEL=
1611.if defined(NO_INSTALLKERNEL)
1612# All of the BUILDKERNELS loops start at index 1.
1613BUILDKERNELS+= dummy
1614.endif
1615.for _kernel in ${KERNCONF}
1616.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${_kernel})
1617BUILDKERNELS+=	${_kernel}
1618.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1619INSTALLKERNEL= ${_kernel}
1620.endif
1621.else
1622.if make(buildkernel)
1623.error Missing KERNCONF ${KERNCONFDIR}/${_kernel}
1624.endif
1625.endif
1626.endfor
1627
1628_cleankernobj_fast_depend_hack: .PHONY
1629# 20180320 remove stale generated assym.s after renaming to .inc in r331254
1630	@if [ -e "${OBJTOP}/sys/${KERNCONF}/assym.s" ]; then \
1631		echo "Removing stale generated assym files"; \
1632		rm -f ${OBJTOP}/sys/${KERNCONF}/assym.* \
1633		    ${OBJTOP}/sys/${KERNCONF}/.depend.assym.*; \
1634	fi
1635# 20191009  r353340  removal of opensolaris_atomic.S (also r353381)
1636.if ${MACHINE} != i386
1637.for f in opensolaris_atomic
1638.for m in opensolaris zfs
1639	@if [ -e "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o" ] && \
1640	    grep -q ${f}.S "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o"; then \
1641		echo "Removing stale dependencies for opensolaris_atomic"; \
1642		rm -f ${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.*; \
1643	fi
1644.endfor
1645.endfor
1646.endif
1647
1648${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1649
1650# record kernel(s) build time in seconds
1651.if make(buildkernel)
1652_BUILDKERNEL_START!= date '+%s'
1653.endif
1654
1655#
1656# buildkernel
1657#
1658# Builds all kernels defined by BUILDKERNELS.
1659#
1660buildkernel: .MAKE .PHONY
1661.if empty(BUILDKERNELS:Ndummy)
1662	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1663	false
1664.endif
1665	@echo
1666.for _kernel in ${BUILDKERNELS:Ndummy}
1667	@echo "--------------------------------------------------------------"
1668	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1669	@echo "--------------------------------------------------------------"
1670	@echo "===> ${_kernel}"
1671	mkdir -p ${KRNLOBJDIR}
1672.if !defined(NO_KERNELCONFIG)
1673	@echo
1674	@echo "--------------------------------------------------------------"
1675	@echo ">>> stage 1: configuring the kernel"
1676	@echo "--------------------------------------------------------------"
1677	cd ${KRNLCONFDIR}; \
1678		PATH=${TMPPATH} \
1679		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1680			-I '${KERNCONFDIR}' -I '${KRNLCONFDIR}' \
1681			'${KERNCONFDIR}/${_kernel}'
1682.endif
1683.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1684	@echo
1685	@echo "--------------------------------------------------------------"
1686	@echo ">>> stage 2.1: cleaning up the object tree"
1687	@echo "--------------------------------------------------------------"
1688	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1689.else
1690	${_+_}cd ${.CURDIR}; ${WMAKE} _cleankernobj_fast_depend_hack
1691.endif
1692.if !defined(NO_KERNELOBJ)
1693	@echo
1694	@echo "--------------------------------------------------------------"
1695	@echo ">>> stage 2.2: rebuilding the object tree"
1696	@echo "--------------------------------------------------------------"
1697	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1698.endif
1699	@echo
1700	@echo "--------------------------------------------------------------"
1701	@echo ">>> stage 2.3: build tools"
1702	@echo "--------------------------------------------------------------"
1703	${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1704	@echo
1705	@echo "--------------------------------------------------------------"
1706	@echo ">>> stage 3.1: building everything"
1707	@echo "--------------------------------------------------------------"
1708	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1709	@echo "--------------------------------------------------------------"
1710	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1711	@echo "--------------------------------------------------------------"
1712
1713.endfor
1714	@seconds=$$(($$(date '+%s') - ${_BUILDKERNEL_START})); \
1715	  echo -n ">>> Kernel(s) ${BUILDKERNELS} built in $$seconds seconds, "; \
1716	  echo "ncpu: $$(sysctl -n hw.ncpu)${.MAKE.JOBS:S/^/, make -j/}"
1717	@echo "--------------------------------------------------------------"
1718
1719NO_INSTALLEXTRAKERNELS?=	yes
1720
1721#
1722# installkernel, etc.
1723#
1724# Install the kernel defined by INSTALLKERNEL
1725#
1726installkernel installkernel.debug \
1727reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY
1728.if !defined(NO_INSTALLKERNEL)
1729.if empty(INSTALLKERNEL)
1730	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1731	false
1732.endif
1733	@echo "--------------------------------------------------------------"
1734	@echo ">>> Installing kernel ${INSTALLKERNEL} on $$(LC_ALL=C date)"
1735	@echo "--------------------------------------------------------------"
1736	${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1737	    ${CROSSENV} PATH=${TMPPATH} \
1738	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1739	@echo "--------------------------------------------------------------"
1740	@echo ">>> Installing kernel ${INSTALLKERNEL} completed on $$(LC_ALL=C date)"
1741	@echo "--------------------------------------------------------------"
1742.endif
1743.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1744.for _kernel in ${BUILDKERNELS:[2..-1]}
1745	@echo "--------------------------------------------------------------"
1746	@echo ">>> Installing kernel ${_kernel} $$(LC_ALL=C date)"
1747	@echo "--------------------------------------------------------------"
1748	${_+_}cd ${KRNLOBJDIR}/${_kernel}; \
1749	    ${CROSSENV} PATH=${TMPPATH} \
1750	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1751	@echo "--------------------------------------------------------------"
1752	@echo ">>> Installing kernel ${_kernel} completed on $$(LC_ALL=C date)"
1753	@echo "--------------------------------------------------------------"
1754.endfor
1755.endif
1756
1757distributekernel distributekernel.debug: .PHONY
1758.if !defined(NO_INSTALLKERNEL)
1759.if empty(INSTALLKERNEL)
1760	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1761	false
1762.endif
1763	mkdir -p ${DESTDIR}/${DISTDIR}
1764.if defined(NO_ROOT)
1765	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1766.endif
1767	${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1768	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1769	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1770	    DESTDIR=${INSTALL_DDIR}/kernel \
1771	    ${.TARGET:S/distributekernel/install/}
1772.if defined(NO_ROOT)
1773	@sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1774	    ${DESTDIR}/${DISTDIR}/kernel.meta
1775.endif
1776.endif
1777.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1778.for _kernel in ${BUILDKERNELS:[2..-1]}
1779.if defined(NO_ROOT)
1780	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1781.endif
1782	${_+_}cd ${KRNLOBJDIR}/${_kernel}; \
1783	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1784	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1785	    KERNEL=${INSTKERNNAME}.${_kernel} \
1786	    DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1787	    ${.TARGET:S/distributekernel/install/}
1788.if defined(NO_ROOT)
1789	@sed -e "s|^./kernel.${_kernel}|.|" \
1790	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1791	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1792.endif
1793.endfor
1794.endif
1795
1796packagekernel: .PHONY
1797.if defined(NO_ROOT)
1798.if !defined(NO_INSTALLKERNEL)
1799	cd ${DESTDIR}/${DISTDIR}/kernel; \
1800	    tar cvf - --exclude '*.debug' \
1801	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1802	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1803.endif
1804.if ${MK_DEBUG_FILES} != "no"
1805	cd ${DESTDIR}/${DISTDIR}/kernel; \
1806	    tar cvf - --include '*/*/*.debug' \
1807	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1808	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1809.endif
1810.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1811.for _kernel in ${BUILDKERNELS:[2..-1]}
1812	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1813	    tar cvf - --exclude '*.debug' \
1814	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1815	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1816.if ${MK_DEBUG_FILES} != "no"
1817	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1818	    tar cvf - --include '*/*/*.debug' \
1819	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1820	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1821.endif
1822.endfor
1823.endif
1824.else
1825.if !defined(NO_INSTALLKERNEL)
1826	cd ${DESTDIR}/${DISTDIR}/kernel; \
1827	    tar cvf - --exclude '*.debug' . | \
1828	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1829.endif
1830.if ${MK_DEBUG_FILES} != "no"
1831	cd ${DESTDIR}/${DISTDIR}/kernel; \
1832	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1833	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1834.endif
1835.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1836.for _kernel in ${BUILDKERNELS:[2..-1]}
1837	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1838	    tar cvf - --exclude '*.debug' . | \
1839	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1840.if ${MK_DEBUG_FILES} != "no"
1841	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1842	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1843	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1844.endif
1845.endfor
1846.endif
1847.endif
1848
1849stagekernel: .PHONY
1850	${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel
1851
1852PORTSDIR?=	/usr/ports
1853WSTAGEDIR?=	${OBJTOP}/worldstage
1854KSTAGEDIR?=	${OBJTOP}/kernelstage
1855REPODIR?=	${OBJROOT}repo
1856PKGSIGNKEY?=	# empty
1857
1858.ORDER:		stage-packages create-packages
1859.ORDER:		create-packages create-world-packages
1860.ORDER:		create-packages create-kernel-packages
1861.ORDER:		create-packages sign-packages
1862
1863_pkgbootstrap: .PHONY
1864.if make(*package*) && !exists(${LOCALBASE}/sbin/pkg)
1865	@env ASSUME_ALWAYS_YES=YES pkg bootstrap
1866.endif
1867
1868packages: .PHONY
1869	${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} real-packages
1870
1871package-pkg: .PHONY
1872	rm -rf /tmp/ports.${TARGET} || :
1873	env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \
1874		PKG_CMD=${PKG_CMD} PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} \
1875		WSTAGEDIR=${WSTAGEDIR} \
1876		sh ${.CURDIR}/release/scripts/make-pkg-package.sh
1877
1878real-packages:	stage-packages create-packages sign-packages .PHONY
1879
1880stage-packages-world: .PHONY
1881	@mkdir -p ${WSTAGEDIR}
1882	${_+_}@cd ${.CURDIR}; \
1883		${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld
1884
1885stage-packages-kernel: .PHONY
1886	@mkdir -p ${KSTAGEDIR}
1887	${_+_}@cd ${.CURDIR}; \
1888		${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel
1889
1890stage-packages: .PHONY stage-packages-world stage-packages-kernel
1891
1892_repodir: .PHONY
1893	@mkdir -p ${REPODIR}
1894
1895create-packages-world:	_pkgbootstrap _repodir .PHONY
1896	${_+_}@cd ${.CURDIR}; \
1897		${MAKE} -f Makefile.inc1 \
1898			DESTDIR=${WSTAGEDIR} \
1899			PKG_VERSION=${PKG_VERSION} create-world-packages
1900
1901create-packages-kernel:	_pkgbootstrap _repodir .PHONY
1902	${_+_}@cd ${.CURDIR}; \
1903		${MAKE} -f Makefile.inc1 \
1904			DESTDIR=${KSTAGEDIR} \
1905			PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \
1906			create-kernel-packages
1907
1908create-packages: .PHONY create-packages-world create-packages-kernel
1909
1910create-world-packages:	_pkgbootstrap .PHONY
1911	@rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || :
1912	@cd ${WSTAGEDIR} ; \
1913		env -i LC_COLLATE=C sort ${WSTAGEDIR}/${DISTDIR}/METALOG | \
1914		awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk
1915	@for plist in ${WSTAGEDIR}/*.plist; do \
1916	  plist=$${plist##*/} ; \
1917	  pkgname=$${plist%.plist} ; \
1918	  echo "_PKGS+= $${pkgname}" ; \
1919	done > ${WSTAGEDIR}/packages.mk
1920	${_+_}@cd ${.CURDIR}; \
1921		${MAKE} -f Makefile.inc1 create-world-packages-jobs \
1922		.MAKE.JOB.PREFIX=
1923
1924.if make(create-world-packages-jobs)
1925.include "${WSTAGEDIR}/packages.mk"
1926.endif
1927
1928create-world-packages-jobs: .PHONY
1929.for pkgname in ${_PKGS}
1930create-world-packages-jobs: create-world-package-${pkgname}
1931create-world-package-${pkgname}: .PHONY
1932	@sh ${SRCDIR}/release/packages/generate-ucl.sh -o ${pkgname} \
1933		-s ${SRCDIR} -u ${WSTAGEDIR}/${pkgname}.ucl
1934	@awk -F\" ' \
1935		/^name/ { printf("===> Creating %s-", $$2); next } \
1936		/^version/ { print $$2; next } \
1937		' ${WSTAGEDIR}/${pkgname}.ucl
1938	@if [ "${pkgname}" == "runtime" ]; then \
1939		sed -i '' -e "s/%VCS_REVISION%/${VCS_REVISION}/" ${WSTAGEDIR}/${pkgname}.ucl ; \
1940	fi
1941	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \
1942		create -M ${WSTAGEDIR}/${pkgname}.ucl \
1943		-p ${WSTAGEDIR}/${pkgname}.plist \
1944		-r ${WSTAGEDIR} \
1945		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION}
1946.endfor
1947
1948_default_flavor=	-default
1949.if make(*package*) && exists(${KSTAGEDIR}/kernel.meta)
1950. if ${MK_DEBUG_FILES} != "no"
1951_debug=-debug
1952. endif
1953create-kernel-packages:	.PHONY
1954. for flavor in "" ${_debug}
1955create-kernel-packages: create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}
1956create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap .PHONY
1957	@cd ${KSTAGEDIR}/${DISTDIR} ; \
1958	env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.meta | \
1959	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1960		-v kernel=yes -v _kernconf=${INSTALLKERNEL} ; \
1961	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1962		-e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \
1963		-e "s/%KERNELDIR%/kernel/" \
1964		-e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1965		-e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1966		-e "s/ %VCS_REVISION%/${VCS_REVISION}/" \
1967		${SRCDIR}/release/packages/kernel.ucl \
1968		> ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1969	awk -F\" ' \
1970		/name/ { printf("===> Creating %s-", $$2); next } \
1971		/version/ {print $$2; next } ' \
1972		${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1973	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \
1974		create -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \
1975		-p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \
1976		-r ${KSTAGEDIR}/${DISTDIR} \
1977		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION}
1978. endfor
1979.endif
1980.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1981. for _kernel in ${BUILDKERNELS:[2..-1]}
1982.  if exists(${KSTAGEDIR}/kernel.${_kernel}.meta)
1983.   if ${MK_DEBUG_FILES} != "no"
1984_debug=-debug
1985.   endif
1986.   for flavor in "" ${_debug}
1987create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}
1988create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}: _pkgbootstrap .PHONY
1989	@cd ${KSTAGEDIR}/kernel.${_kernel} ; \
1990	env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.${_kernel}.meta | \
1991	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1992		-v kernel=yes -v _kernconf=${_kernel} ; \
1993	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1994		-e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \
1995		-e "s/%KERNELDIR%/kernel.${_kernel}/" \
1996		-e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \
1997		-e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \
1998		-e "s/ %VCS_REVISION%/${VCS_REVISION}/" \
1999		${SRCDIR}/release/packages/kernel.ucl \
2000		> ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
2001	awk -F\" ' \
2002		/name/ { printf("===> Creating %s-", $$2); next } \
2003		/version/ {print $$2; next } ' \
2004		${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
2005	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \
2006		create -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \
2007		-p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \
2008		-r ${KSTAGEDIR}/kernel.${_kernel} \
2009		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION}
2010.   endfor
2011.  endif
2012. endfor
2013.endif
2014
2015sign-packages:	_pkgbootstrap .PHONY
2016	@[ -L "${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest" ] && \
2017		unlink ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest ; \
2018	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname repo \
2019		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \
2020		${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \
2021		${PKGSIGNKEY} ; \
2022	cd ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI); \
2023	ln -s ${PKG_VERSION} latest
2024
2025#
2026#
2027# checkworld
2028#
2029# Run test suite on installed world.
2030#
2031checkworld: .PHONY
2032	@if [ ! -x "${LOCALBASE}/bin/kyua" ]; then \
2033		echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
2034		exit 1; \
2035	fi
2036	${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile
2037
2038#
2039#
2040# doxygen
2041#
2042# Build the API documentation with doxygen
2043#
2044doxygen: .PHONY
2045	@if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \
2046		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
2047		exit 1; \
2048	fi
2049	${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
2050
2051#
2052# update
2053#
2054# Update the source tree(s), by running svn/svnup to update to the
2055# latest copy.
2056#
2057update: .PHONY
2058.if defined(SVN_UPDATE)
2059	@echo "--------------------------------------------------------------"
2060	@echo ">>> Updating ${.CURDIR} using Subversion"
2061	@echo "--------------------------------------------------------------"
2062	@(cd ${.CURDIR}; ${SVN_CMD} update ${SVNFLAGS})
2063.endif
2064
2065#
2066# ------------------------------------------------------------------------
2067#
2068# From here onwards are utility targets used by the 'make world' and
2069# related targets.  If your 'world' breaks, you may like to try to fix
2070# the problem and manually run the following targets to attempt to
2071# complete the build.  Beware, this is *not* guaranteed to work, you
2072# need to have a pretty good grip on the current state of the system
2073# to attempt to manually finish it.  If in doubt, 'make world' again.
2074#
2075
2076#
2077# legacy: Build compatibility shims for the next three targets. This is a
2078# minimal set of tools and shims necessary to compensate for older systems
2079# which don't have the APIs required by the targets built in bootstrap-tools,
2080# build-tools or cross-tools.
2081#
2082
2083
2084# libnv and libl are both requirements for config(8), which is an unconditional
2085# bootstrap-tool.
2086_config_deps= lib/libnv usr.bin/lex/lib
2087
2088legacy: .PHONY
2089.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0
2090	@echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \
2091	false
2092.endif
2093
2094.for _tool in tools/build ${_config_deps}
2095	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \
2096	    cd ${.CURDIR}/${_tool}; \
2097	    if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2098	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy includes; \
2099	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \
2100	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \
2101	        DESTDIR=${WORLDTMP}/legacy install
2102.endfor
2103
2104#
2105# bootstrap-tools: Build tools needed for compatibility. These are binaries that
2106# are built to build other binaries in the system. However, the focus of these
2107# binaries is usually quite narrow. Bootstrap tools use the host's compiler and
2108# libraries, augmented by -legacy, in addition to the libraries built during
2109# bootstrap-tools.
2110#
2111_bt=		_bootstrap-tools
2112
2113# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't
2114# accidentally run tools that are incompatible but happen to be in $PATH.
2115# This is especially important when building on Linux/MacOS where many of the
2116# programs used during the build accept different flags or generate different
2117# output. On those platforms we only symlink the tools known to be compatible
2118# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others
2119# from the FreeBSD sources during the bootstrap-tools stage.
2120# We want to build without the user's $PATH starting in the bootstrap-tools
2121# phase so the tools used in that phase (ln, cp, etc) must have already been
2122# linked to $WORLDTMP. The tools are listed in the _host_tools_to_symlink
2123# variable in tools/build/Makefile and are linked during the legacy phase.
2124# Since they could be Linux or MacOS binaries, too we must only use flags that
2125# are portable across operating systems.
2126
2127# If BOOTSTRAP_ALL_TOOLS is set we will build all the required tools from the
2128# current source tree. Otherwise we create a symlink to the version found in
2129# $PATH during the bootstrap-tools stage.
2130.if defined(BOOTSTRAP_ALL_TOOLS)
2131# BOOTSTRAPPING will be set on the command line so we can't override it here.
2132# Instead set BOOTSTRAPPING_OSRELDATE so that the value 0 is set ${BSARGS}
2133BOOTSTRAPPING_OSRELDATE:=	0
2134.endif
2135
2136.if ${MK_GAMES} != "no"
2137_strfile=	usr.bin/fortune/strfile
2138.endif
2139
2140.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
2141_gperf=		gnu/usr.bin/gperf
2142.endif
2143
2144.if ${MK_VT} != "no"
2145_vtfontcvt=	usr.bin/vtfontcvt
2146.endif
2147
2148# If we are not building the bootstrap because BOOTSTRAPPING is sufficient
2149# we symlink the host version to $WORLDTMP instead. By doing this we can also
2150# detect when a bootstrap tool is being used without the required MK_FOO.
2151# If you add a new bootstrap tool where we could also use the host version,
2152# please ensure that you also add a .else case where you add the tool to the
2153# _bootstrap_tools_links variable.
2154.if ${BOOTSTRAPPING} < 1000033
2155_m4=		usr.bin/m4
2156_lex=		usr.bin/lex
2157# Note: lex needs m4 to build but m4 also depends on lex. However, lex can be
2158# bootstrapped so we build lex first.
2159${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc ${_bt}-${_lex}
2160_bt_m4_depend=${_bt}-${_m4}
2161_bt_lex_depend=${_bt}-${_lex} ${_bt_m4_depend}
2162.else
2163_bootstrap_tools_links+=m4 lex
2164.endif
2165
2166# ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
2167# r296685 fix cross-endian objcopy
2168# r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2.
2169# r334881 added libdwarf constants used by ctfconvert.
2170# r338478 fixed a crash in objcopy for mips64el objects
2171# r339083 libelf: correct mips64el test to use ELF header
2172# r348347 Add missing powerpc64 relocation support to libdwarf
2173.if ${BOOTSTRAPPING} < 1300030
2174_elftoolchain_libs= lib/libelf lib/libdwarf lib/libzstd
2175${_bt}-lib/libelf: ${_bt_m4_depend}
2176${_bt}-lib/libdwarf: ${_bt_m4_depend}
2177.endif
2178
2179# flua is required to regenerate syscall files.  It first appeared during the
2180# 13.0-CURRENT cycle, thus needs to be built on -older releases and stable
2181# branches.
2182.if ${BOOTSTRAPPING} < 1300059
2183_flua= libexec/flua
2184.endif
2185
2186# r245440 mtree -N support added
2187# r313404 requires sha384.h for libnetbsd, added to libmd in r292782
2188.if ${BOOTSTRAPPING} < 1100093
2189_nmtree=	lib/libmd \
2190		lib/libnetbsd \
2191		usr.sbin/nmtree
2192
2193${_bt}-lib/libnetbsd: ${_bt}-lib/libmd
2194${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
2195.else
2196_bootstrap_tools_links+=mtree
2197.endif
2198
2199# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l
2200.if ${BOOTSTRAPPING} < 1000027
2201_cat=		bin/cat
2202.else
2203_bootstrap_tools_links+=cat
2204.endif
2205
2206# r277259 crunchide: Correct 64-bit section header offset
2207# r281674 crunchide: always include both 32- and 64-bit ELF support
2208.if ${BOOTSTRAPPING} < 1100078
2209_crunchide=	usr.sbin/crunch/crunchide
2210.else
2211_bootstrap_tools_links+=crunchide
2212.endif
2213
2214# r285986 crunchen: use STRIPBIN rather than STRIP
2215# 1100113: Support MK_AUTO_OBJ
2216# 1200006: META_MODE fixes
2217.if ${BOOTSTRAPPING} < 1100078 || \
2218    (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114) || \
2219    (${MK_META_MODE} == "yes" && ${BOOTSTRAPPING} < 1200006)
2220_crunchgen=	usr.sbin/crunch/crunchgen
2221.else
2222_bootstrap_tools_links+=crunchgen
2223.endif
2224
2225# r296926 -P keymap search path, MFC to stable/10 in r298297
2226.if ${BOOTSTRAPPING} < 1003501 || \
2227	(${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103)
2228_kbdcontrol=	usr.sbin/kbdcontrol
2229.else
2230_bootstrap_tools_links+=kbdcontrol
2231.endif
2232
2233_yacc=		lib/liby \
2234		usr.bin/yacc
2235
2236${_bt}-usr.bin/yacc: ${_bt}-lib/liby
2237
2238.if ${MK_BSNMP} != "no"
2239_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
2240.endif
2241
2242.if ${MK_LOCALES} != "no"
2243_localedef=	usr.bin/localedef
2244.endif
2245
2246# We need to build tblgen when we're building clang or lld, either as
2247# bootstrap tools, or as the part of the normal build.
2248.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \
2249    ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no"
2250_clang_tblgen= \
2251	lib/clang/libllvmminimal \
2252	usr.bin/clang/llvm-tblgen \
2253	usr.bin/clang/clang-tblgen \
2254	usr.bin/clang/lldb-tblgen
2255# XXX: lldb-tblgen is not needed, if top-level MK_LLDB=no
2256
2257${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal
2258${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal
2259${_bt}-usr.bin/clang/lldb-tblgen: ${_bt}-lib/clang/libllvmminimal
2260.endif
2261
2262# Build BSDL or GPL DTC depending on GPL_DTC option.
2263_dtc= usr.bin/dtc
2264.if ${MK_GPL_DTC} != "no"
2265_dtc= gnu/usr.bin/dtc
2266.endif
2267
2268.if ${MK_LOCALES} != "no"
2269_localedef=	usr.bin/localedef
2270.endif
2271
2272.if ${MK_KERBEROS} != "no"
2273_kerberos5_bootstrap_tools= \
2274	kerberos5/tools/make-roken \
2275	kerberos5/lib/libroken \
2276	kerberos5/lib/libvers \
2277	kerberos5/tools/asn1_compile \
2278	kerberos5/tools/slc \
2279	usr.bin/compile_et
2280
2281.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
2282.for _tool in ${_kerberos5_bootstrap_tools}
2283${_bt}-${_tool}: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
2284.endfor
2285.endif
2286
2287${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd
2288
2289# The tools listed in _basic_bootstrap_tools will generally not be
2290# bootstrapped unless BOOTSTRAP_ALL_TOOL is set. However, when building on a
2291# Linux or MacOS host the host versions are incompatible so we need to build
2292# them from the source tree. Usually the link name will be the same as the subdir,
2293# but some directories such as grep or test install multiple binaries. In that
2294# case we use the _basic_bootstrap_tools_multilink variable which is a list of
2295# subdirectory and comma-separated list of files.
2296_basic_bootstrap_tools_multilink=usr.bin/grep grep,egrep,fgrep
2297_basic_bootstrap_tools_multilink+=bin/test test,[
2298# bootstrap tools needed by buildworld:
2299_basic_bootstrap_tools=usr.bin/awk usr.bin/cut bin/expr usr.bin/gencat \
2300    usr.bin/join usr.bin/mktemp bin/rmdir usr.bin/sed usr.bin/sort \
2301    usr.bin/truncate usr.bin/tsort
2302# elf2aout is required for sparc64 build
2303_basic_bootstrap_tools+=usr.bin/elf2aout
2304# file2c is required for building usr.sbin/config:
2305_basic_bootstrap_tools+=usr.bin/file2c
2306# uuencode/uudecode required for share/tabset
2307_basic_bootstrap_tools+=usr.bin/uuencode usr.bin/uudecode
2308# xargs is required by mkioctls
2309_basic_bootstrap_tools+=usr.bin/xargs
2310# cap_mkdb is required for share/termcap:
2311_basic_bootstrap_tools+=usr.bin/cap_mkdb
2312# ldd is required for installcheck (TODO: just always use /usr/bin/ldd instead?)
2313_basic_bootstrap_tools+=usr.bin/ldd
2314# services_mkdb/pwd_mkdb are required for installworld:
2315_basic_bootstrap_tools+=usr.sbin/services_mkdb usr.sbin/pwd_mkdb
2316# sysctl/chflags are required for installkernel:
2317_basic_bootstrap_tools+=sbin/sysctl bin/chflags
2318# mkfifo is used by sys/conf/newvers.sh
2319_basic_bootstrap_tools+=usr.bin/mkfifo
2320
2321.if ${MK_AMD} != "no"
2322# unifdef is only used by usr.sbin/amd/libamu/Makefile
2323_basic_bootstrap_tools+=usr.bin/unifdef
2324.endif
2325
2326.if ${MK_BOOT} != "no"
2327_basic_bootstrap_tools+=bin/dd
2328# xz/unxz is used by EFI
2329_basic_bootstrap_tools_multilink+=usr.bin/xz xz,unxz
2330# md5 is used by boot/beri (and possibly others)
2331_basic_bootstrap_tools+=sbin/md5
2332.if defined(BOOTSTRAP_ALL_TOOLS)
2333${_bt}-sbin/md5: ${_bt}-lib/libmd
2334.endif
2335.endif
2336
2337.if ${MK_ZONEINFO} != "no"
2338_basic_bootstrap_tools+=usr.sbin/zic usr.sbin/tzsetup
2339.endif
2340
2341.if defined(BOOTSTRAP_ALL_TOOLS)
2342_other_bootstrap_tools+=${_basic_bootstrap_tools}
2343.for _subdir _links in ${_basic_bootstrap_tools_multilink}
2344_other_bootstrap_tools+=${_subdir}
2345.endfor
2346${_bt}-usr.bin/awk: ${_bt_lex_depend} ${_bt}-usr.bin/yacc
2347${_bt}-bin/expr: ${_bt_lex_depend} ${_bt}-usr.bin/yacc
2348# If we are bootstrapping file2c, we have to build it before config:
2349${_bt}-usr.sbin/config: ${_bt}-usr.bin/file2c ${_bt_lex_depend}
2350# Note: no symlink to make/bmake in the !BOOTSTRAP_ALL_TOOLS case here since
2351# the links to make/bmake make links will have already have been created in the
2352# `make legacy` step. Not adding a link to make is important on non-FreeBSD
2353# since "make" will usually point to GNU make there.
2354_other_bootstrap_tools+=usr.bin/bmake
2355.else
2356# All tools in _basic_bootstrap_tools have the same name as the subdirectory
2357# so we can use :T to get the name of the symlinks that we need to create.
2358_bootstrap_tools_links+=${_basic_bootstrap_tools:T}
2359.for _subdir _links in ${_basic_bootstrap_tools_multilink}
2360_bootstrap_tools_links+=${_links:S/,/ /g}
2361.endfor
2362.endif	# defined(BOOTSTRAP_ALL_TOOLS)
2363
2364# Link the tools that we need for building but don't need to bootstrap because
2365# the host version is known to be compatible into ${WORLDTMP}/legacy
2366# We do this before building any of the bootstrap tools in case they depend on
2367# the presence of any of the links (e.g. as m4/lex/awk)
2368${_bt}-links: .PHONY
2369
2370.for _tool in ${_bootstrap_tools_links}
2371${_bt}-link-${_tool}: .PHONY .MAKE
2372	@if [ ! -e "${WORLDTMP}/legacy/bin/${_tool}" ]; then \
2373		source_path=`which ${_tool}`; \
2374		if [ ! -e "$${source_path}" ] ; then \
2375			echo "Cannot find host tool '${_tool}'"; false; \
2376		fi; \
2377		ln -sfnv "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}"; \
2378	fi
2379${_bt}-links: ${_bt}-link-${_tool}
2380.endfor
2381
2382bootstrap-tools: ${_bt}-links .PHONY
2383
2384#	Please document (add comment) why something is in 'bootstrap-tools'.
2385#	Try to bound the building of the bootstrap-tool to just the
2386#	FreeBSD versions that need the tool built at this stage of the build.
2387.for _tool in \
2388    ${_clang_tblgen} \
2389    ${_kerberos5_bootstrap_tools} \
2390    ${_strfile} \
2391    ${_gperf} \
2392    ${_dtc} \
2393    ${_cat} \
2394    ${_kbdcontrol} \
2395    ${_elftoolchain_libs} \
2396    usr.bin/lorder \
2397    lib/libopenbsd \
2398    usr.bin/mandoc \
2399    usr.bin/rpcgen \
2400    ${_yacc} \
2401    ${_m4} \
2402    ${_lex} \
2403    ${_other_bootstrap_tools} \
2404    usr.bin/xinstall \
2405    ${_gensnmptree} \
2406    usr.sbin/config \
2407    ${_flua} \
2408    ${_crunchide} \
2409    ${_crunchgen} \
2410    ${_nmtree} \
2411    ${_vtfontcvt} \
2412    ${_localedef}
2413${_bt}-${_tool}: ${_bt}-links .PHONY .MAKE
2414	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2415		cd ${.CURDIR}/${_tool}; \
2416		if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2417		if [ "${_tool}" = "usr.bin/lex" ]; then \
2418			${MAKE} DIRPRFX=${_tool}/ bootstrap; \
2419		fi; \
2420		${MAKE} DIRPRFX=${_tool}/ all; \
2421		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install
2422
2423bootstrap-tools: ${_bt}-${_tool}
2424.endfor
2425
2426#
2427# build-tools: Build special purpose build tools
2428#
2429.if !defined(NO_SHARE) && ${MK_SYSCONS} != "no"
2430_share=	share/syscons/scrnmaps
2431.endif
2432
2433.if ${MK_GCC} != "no"
2434_gcc_tools= gnu/usr.bin/cc/cc_tools
2435.endif
2436
2437.if ${MK_RESCUE} != "no"
2438# rescue includes programs that have build-tools targets
2439_rescue=rescue/rescue
2440.endif
2441
2442.if ${MK_TCSH} != "no"
2443_tcsh=bin/csh
2444.endif
2445.if ${MK_FILE} != "no"
2446_libmagic=lib/libmagic
2447.endif
2448
2449.if ${MK_PMC} != "no" && \
2450    (${TARGET_ARCH} == "aarch64" || ${TARGET_ARCH} == "amd64" || \
2451    ${TARGET_ARCH} == "i386")
2452_jevents=lib/libpmc/pmu-events
2453.endif
2454
2455# kernel-toolchain skips _cleanobj, so handle cleaning up previous
2456# build-tools directories if needed.
2457.if !defined(NO_CLEAN) && make(kernel-toolchain)
2458_bt_clean=	${CLEANDIR}
2459.endif
2460
2461.for _tool in \
2462    ${_tcsh} \
2463    bin/sh \
2464    ${LOCAL_TOOL_DIRS} \
2465    ${_jevents} \
2466    lib/ncurses/ncurses \
2467    lib/ncurses/ncursesw \
2468    ${_rescue} \
2469    ${_share} \
2470    usr.bin/awk \
2471    ${_libmagic} \
2472    usr.bin/mkesdb_static \
2473    usr.bin/mkcsmapper_static \
2474    usr.bin/vi/catalog \
2475    ${_gcc_tools}
2476build-tools_${_tool}: .PHONY
2477	${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \
2478		cd ${.CURDIR}/${_tool}; \
2479		if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \
2480		if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2481		${MAKE} DIRPRFX=${_tool}/ build-tools
2482build-tools: build-tools_${_tool}
2483.endfor
2484
2485#
2486# kernel-tools: Build kernel-building tools
2487#
2488kernel-tools: .PHONY
2489	mkdir -p ${WORLDTMP}/usr
2490	${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2491	    -p ${WORLDTMP}/usr >/dev/null
2492
2493#
2494# cross-tools: All the tools needed to build the rest of the system after
2495# we get done with the earlier stages. It is the last set of tools needed
2496# to begin building the target binaries.
2497#
2498.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BUILD_WITH_STRICT_TMPPATH} != 0
2499.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
2500_btxld=		usr.sbin/btxld
2501.endif
2502.endif
2503
2504# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
2505# resulting from missing bug fixes or ELF Toolchain updates.
2506.if ${MK_CDDL} != "no"
2507_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
2508    cddl/usr.bin/ctfmerge
2509.endif
2510
2511# If we're given an XAS, don't build binutils.
2512.if ${XAS:M/*} == ""
2513.if ${MK_BINUTILS_BOOTSTRAP} != "no"
2514_binutils=	gnu/usr.bin/binutils
2515.endif
2516.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2517_elftctools=	lib/libelftc \
2518		lib/libpe \
2519		usr.bin/objcopy \
2520		usr.bin/nm \
2521		usr.bin/size \
2522		usr.bin/strings
2523# These are not required by the build, but can be useful for developers who
2524# cross-build on a FreeBSD 10 host:
2525_elftctools+=	usr.bin/addr2line
2526.endif
2527.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2528# If cross-building with an external binutils we still need to build strip for
2529# the target (for at least crunchide).
2530_elftctools=	lib/libelftc \
2531		lib/libpe \
2532		usr.bin/objcopy
2533.endif
2534
2535.if ${MK_CLANG_BOOTSTRAP} != "no"
2536_clang=		usr.bin/clang
2537.endif
2538.if ${MK_LLD_BOOTSTRAP} != "no"
2539_lld=		usr.bin/clang/lld
2540.endif
2541.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no"
2542_clang_libs=	lib/clang
2543.endif
2544.if ${MK_GCC_BOOTSTRAP} != "no"
2545_gcc=		gnu/usr.bin/cc
2546.endif
2547.if ${MK_USB} != "no"
2548_usb_tools=	stand/usb/tools
2549.endif
2550
2551.if ${BUILD_WITH_STRICT_TMPPATH} != 0 || defined(BOOTSTRAP_ALL_TOOLS)
2552_ar=usr.bin/ar
2553.endif
2554
2555cross-tools: .MAKE .PHONY
2556.for _tool in \
2557    ${LOCAL_XTOOL_DIRS} \
2558    ${_ar} \
2559    ${_clang_libs} \
2560    ${_clang} \
2561    ${_lld} \
2562    ${_binutils} \
2563    ${_elftctools} \
2564    ${_dtrace_tools} \
2565    ${_gcc} \
2566    ${_btxld} \
2567    ${_usb_tools}
2568	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2569		cd ${.CURDIR}/${_tool}; \
2570		if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2571		${MAKE} DIRPRFX=${_tool}/ all; \
2572		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install
2573.endfor
2574
2575#
2576# native-xtools is the current target for qemu-user cross builds of ports
2577# via poudriere and the imgact_binmisc kernel module.
2578# This target merely builds a toolchan/sysroot, then builds the tools it wants
2579# with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain
2580# already built.  It then installs the static tools to NXBDESTDIR for Poudriere
2581# to pickup.
2582#
2583NXBOBJROOT=	${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/
2584NXBOBJTOP=	${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH}
2585NXTP?=		/nxb-bin
2586.if ${NXTP:N/*}
2587.error NXTP variable should be an absolute path
2588.endif
2589NXBDESTDIR?=	${DESTDIR}${NXTP}
2590
2591# This is the list of tools to be built/installed as static and where
2592# appropriate to build for the given TARGET.TARGET_ARCH.
2593NXBDIRS+= \
2594    bin/cat \
2595    bin/chmod \
2596    bin/cp \
2597    ${_tcsh} \
2598    bin/echo \
2599    bin/expr \
2600    bin/hostname \
2601    bin/ln \
2602    bin/ls \
2603    bin/mkdir \
2604    bin/mv \
2605    bin/ps \
2606    bin/realpath \
2607    bin/rm \
2608    bin/rmdir \
2609    bin/sh \
2610    bin/sleep \
2611    sbin/md5 \
2612    sbin/sysctl \
2613    usr.bin/addr2line \
2614    usr.bin/ar \
2615    usr.bin/awk \
2616    usr.bin/basename \
2617    usr.bin/bmake \
2618    usr.bin/bzip2 \
2619    usr.bin/cmp \
2620    usr.bin/diff \
2621    usr.bin/dirname \
2622    usr.bin/objcopy \
2623    usr.bin/env \
2624    usr.bin/fetch \
2625    usr.bin/find \
2626    usr.bin/grep \
2627    usr.bin/gzip \
2628    usr.bin/head \
2629    usr.bin/id \
2630    usr.bin/lex \
2631    usr.bin/limits \
2632    usr.bin/lorder \
2633    usr.bin/mandoc \
2634    usr.bin/mktemp \
2635    usr.bin/mt \
2636    usr.bin/nm \
2637    usr.bin/patch \
2638    usr.bin/readelf \
2639    usr.bin/sed \
2640    usr.bin/size \
2641    usr.bin/sort \
2642    usr.bin/strings \
2643    usr.bin/tar \
2644    usr.bin/touch \
2645    usr.bin/tr \
2646    usr.bin/true \
2647    usr.bin/uniq \
2648    usr.bin/unzip \
2649    usr.bin/wc \
2650    usr.bin/xargs \
2651    usr.bin/xinstall \
2652    usr.bin/xz \
2653    usr.bin/yacc \
2654    usr.sbin/chown
2655
2656SUBDIR_DEPEND_usr.bin/clang=	lib/clang
2657.if ${MK_CLANG} != "no"
2658NXBDIRS+=	lib/clang
2659NXBDIRS+=	usr.bin/clang
2660.endif
2661.if ${MK_GCC} != "no"
2662NXBDIRS+=	gnu/usr.bin/cc
2663.endif
2664.if ${MK_BINUTILS} != "no"
2665NXBDIRS+=	gnu/usr.bin/binutils
2666.endif
2667# XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs
2668# to be evaluated after NXBDIRS is set.
2669.if make(install) && !empty(SUBDIR_OVERRIDE)
2670SUBDIR=	${SUBDIR_OVERRIDE}
2671.endif
2672
2673NXBMAKEARGS+= \
2674	OBJTOP=${NXBOBJTOP:Q} \
2675	OBJROOT=${NXBOBJROOT:Q} \
2676	MAKEOBJDIRPREFIX= \
2677	-DNO_SHARED \
2678	-DNO_CPU_CFLAGS \
2679	-DNO_PIC \
2680	SSP_CFLAGS= \
2681	MK_CASPER=no \
2682	MK_CLANG_EXTRAS=no \
2683	MK_CLANG_FULL=no \
2684	MK_CTF=no \
2685	MK_DEBUG_FILES=no \
2686	MK_GDB=no \
2687	MK_HTML=no \
2688	MK_LLDB=no \
2689	MK_MAN=no \
2690	MK_MAN_UTILS=yes \
2691	MK_OFED=no \
2692	MK_OPENSSH=no \
2693	MK_PROFILE=no \
2694	MK_RETPOLINE=no \
2695	MK_SENDMAIL=no \
2696	MK_SVNLITE=no \
2697	MK_TESTS=no \
2698	MK_WARNS=no \
2699	MK_ZFS=no
2700
2701.if make(native-xtools*) && \
2702    (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH))
2703.error Missing NXB_TARGET / NXB_TARGET_ARCH
2704.endif
2705# For 'toolchain' we want to produce native binaries that themselves generate
2706# native binaries.
2707NXBTMAKE=	${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \
2708		TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH}
2709# For 'everything' we want to produce native binaries (hence -target to
2710# be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries.
2711# TARGET/TARGET_ARCH are still passed along from user.
2712#
2713# Use the toolchain we create as an external toolchain.
2714.if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*}
2715NXBMAKE+=	XCC="${XCC}" \
2716		XCXX="${XCXX}" \
2717		XCPP="${XCPP}"
2718.else
2719NXBMAKE+=	XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \
2720		XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \
2721		XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp"
2722.endif
2723NXBMAKE+=	${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \
2724		TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \
2725		TARGET_TRIPLE=${MACHINE_TRIPLE:Q}
2726# NXBDIRS is improperly based on MACHINE rather than NXB_TARGET.  Need to
2727# invoke a sub-make to reevaluate MK_GCC, etc, for NXBDIRS.
2728NXBMAKE+=	SUBDIR_OVERRIDE='$${NXBDIRS:M*}'
2729# Need to avoid the -isystem logic when using clang as an external toolchain
2730# even if the TARGET being built for wants GCC.
2731NXBMAKE+=	WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}'
2732native-xtools: .PHONY
2733	${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj MK_GCC=yes
2734	# Build the bootstrap/host/cross tools that produce native binaries
2735	# Pass along MK_GCC=yes to ensure GCC-needed build tools are built.
2736	# We don't quite know what the NXB_TARGET wants so just build it.
2737	${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain MK_GCC=yes
2738	# Populate includes/libraries sysroot that produce native binaries.
2739	# This is split out from 'toolchain' above mostly so that target LLVM
2740	# libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without
2741	# polluting the cross-compiler build.  The LLVM/GCC libs are skipped
2742	# here to avoid the problem but are kept in 'toolchain' so that
2743	# needed build tools are built.
2744	${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes MK_CLANG=no MK_GCC=no
2745	${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries MK_CLANG=no MK_GCC=no
2746	# Clean out improper TARGET=MACHINE files
2747	${_+_}cd ${.CURDIR}/gnu/usr.bin/cc/cc_tools; ${NXBTMAKE} cleandir
2748.if !defined(NO_OBJWALK)
2749	${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj
2750.endif
2751	${_+_}cd ${.CURDIR}; ${NXBMAKE} everything
2752	@echo ">> native-xtools done.  Use 'make native-xtools-install' to install to a given DESTDIR"
2753
2754native-xtools-install: .PHONY
2755	mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
2756	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2757	    -p ${NXBDESTDIR}/usr >/dev/null
2758	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2759	    -p ${NXBDESTDIR}/usr/include >/dev/null
2760	${_+_}cd ${.CURDIR}; ${NXBMAKE} \
2761	    DESTDIR=${NXBDESTDIR} \
2762	    -DNO_ROOT \
2763	    install
2764
2765#
2766# hierarchy - ensure that all the needed directories are present
2767#
2768hierarchy hier: .MAKE .PHONY
2769	${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
2770
2771#
2772# libraries - build all libraries, and install them under ${DESTDIR}.
2773#
2774# The list of libraries with dependents (${_prebuild_libs}) and their
2775# interdependencies (__L) are built automatically by the
2776# ${.CURDIR}/tools/make_libdeps.sh script.
2777#
2778libraries: .MAKE .PHONY
2779	${_+_}cd ${.CURDIR}; \
2780	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
2781	    ${MAKE} -f Makefile.inc1 _startup_libs; \
2782	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
2783	    ${MAKE} -f Makefile.inc1 _generic_libs
2784
2785#
2786# static libgcc.a prerequisite for shared libc
2787#
2788_prereq_libs= lib/libcompiler_rt
2789.if ${MK_SSP} != "no"
2790_prereq_libs+= gnu/lib/libssp/libssp_nonshared
2791.endif
2792
2793# These dependencies are not automatically generated:
2794#
2795# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
2796# all shared libraries for ELF.
2797#
2798_startup_libs=	lib/csu
2799.if ${MK_BSD_CRTBEGIN} == "no"
2800_startup_libs+=	gnu/lib/csu
2801.endif
2802_startup_libs+=	lib/libcompiler_rt
2803_startup_libs+=	lib/libc
2804_startup_libs+=	lib/libc_nonshared
2805.if ${MK_LIBCPLUSPLUS} != "no"
2806_startup_libs+=	lib/libcxxrt
2807.endif
2808
2809.if ${MK_LLVM_LIBUNWIND} != "no"
2810_prereq_libs+=	lib/libgcc_eh lib/libgcc_s
2811_startup_libs+=	lib/libgcc_eh lib/libgcc_s
2812
2813lib/libgcc_s__L: lib/libc__L
2814lib/libgcc_s__L: lib/libc_nonshared__L
2815.if ${MK_LIBCPLUSPLUS} != "no"
2816lib/libcxxrt__L: lib/libgcc_s__L
2817.endif
2818
2819.else # MK_LLVM_LIBUNWIND == no
2820
2821_prereq_libs+=	gnu/lib/libgcc
2822_startup_libs+=	gnu/lib/libgcc
2823
2824gnu/lib/libgcc__L: lib/libc__L
2825gnu/lib/libgcc__L: lib/libc_nonshared__L
2826.if ${MK_LIBCPLUSPLUS} != "no"
2827lib/libcxxrt__L: gnu/lib/libgcc__L
2828.endif
2829.endif
2830
2831_prebuild_libs=	${_kerberos5_lib_libasn1} \
2832		${_kerberos5_lib_libhdb} \
2833		${_kerberos5_lib_libheimbase} \
2834		${_kerberos5_lib_libheimntlm} \
2835		${_libsqlite3} \
2836		${_kerberos5_lib_libheimipcc} \
2837		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
2838		${_kerberos5_lib_libroken} \
2839		${_kerberos5_lib_libwind} \
2840		lib/libbz2 ${_libcom_err} lib/libcrypt \
2841		lib/libelf lib/libexpat \
2842		lib/libfigpar \
2843		${_lib_libgssapi} \
2844		lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
2845		lib/libzstd \
2846		${_lib_casper} \
2847		lib/ncurses/ncurses lib/ncurses/ncursesw \
2848		lib/libopie lib/libpam/libpam ${_lib_libthr} \
2849		${_lib_libradius} lib/libsbuf lib/libtacplus \
2850		lib/libgeom \
2851		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
2852		${_cddl_lib_libuutil} \
2853		${_cddl_lib_libavl} \
2854		${_cddl_lib_libzfs_core} ${_cddl_lib_libzfs} \
2855		${_cddl_lib_libctf} \
2856		lib/libufs \
2857		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
2858		${_secure_lib_libcrypto} ${_secure_lib_libssl} \
2859		${_lib_libldns} ${_secure_lib_libssh}
2860
2861.if ${MK_GNUCXX} != "no"
2862_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
2863gnu/lib/libstdc++__L: lib/msun__L
2864gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
2865.endif
2866
2867.if ${MK_DIALOG} != "no"
2868_prebuild_libs+= gnu/lib/libdialog
2869gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
2870.endif
2871
2872.if ${MK_LIBCPLUSPLUS} != "no"
2873_prebuild_libs+= lib/libc++
2874.endif
2875
2876lib/libgeom__L: lib/libexpat__L
2877lib/libkvm__L: lib/libelf__L
2878
2879.if ${MK_LIBTHR} != "no"
2880_lib_libthr=	lib/libthr
2881.endif
2882
2883.if ${MK_RADIUS_SUPPORT} != "no"
2884_lib_libradius=	lib/libradius
2885.endif
2886
2887.if ${MK_OFED} != "no"
2888_prebuild_libs+= \
2889	lib/ofed/libibverbs \
2890	lib/ofed/libibmad \
2891	lib/ofed/libibumad \
2892	lib/ofed/complib \
2893	lib/ofed/libmlx5
2894
2895lib/ofed/libibmad__L:	lib/ofed/libibumad__L
2896lib/ofed/complib__L:	lib/libthr__L
2897lib/ofed/libmlx5__L:	lib/ofed/libibverbs__L lib/libthr__L
2898.endif
2899
2900.if ${MK_CASPER} != "no"
2901_lib_casper=	lib/libcasper
2902.endif
2903
2904lib/libpjdlog__L: lib/libutil__L
2905lib/libcasper__L: lib/libnv__L
2906lib/liblzma__L: lib/libthr__L
2907lib/libzstd__L: lib/libthr__L
2908
2909_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib
2910.if ${MK_IPFILTER} != "no"
2911_generic_libs+=	sbin/ipf/libipf
2912.endif
2913.for _DIR in ${LOCAL_LIB_DIRS}
2914.if ${_DIR} == ".WAIT"  || (empty(_generic_libs:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile))
2915_generic_libs+= ${_DIR}
2916.endif
2917.endfor
2918
2919lib/libopie__L lib/libtacplus__L: lib/libmd__L
2920
2921.if ${MK_CDDL} != "no"
2922_cddl_lib_libumem= cddl/lib/libumem
2923_cddl_lib_libnvpair= cddl/lib/libnvpair
2924_cddl_lib_libavl= cddl/lib/libavl
2925_cddl_lib_libuutil= cddl/lib/libuutil
2926.if ${MK_ZFS} != "no"
2927_cddl_lib_libzfs_core= cddl/lib/libzfs_core
2928_cddl_lib_libzfs= cddl/lib/libzfs
2929
2930cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
2931
2932cddl/lib/libzfs__L: cddl/lib/libzfs_core__L lib/msun__L lib/libutil__L
2933cddl/lib/libzfs__L: lib/libthr__L lib/libmd__L lib/libz__L cddl/lib/libumem__L
2934cddl/lib/libzfs__L: cddl/lib/libuutil__L cddl/lib/libavl__L lib/libgeom__L
2935
2936lib/libbe__L: cddl/lib/libzfs__L
2937.endif
2938_cddl_lib_libctf= cddl/lib/libctf
2939_cddl_lib= cddl/lib
2940cddl/lib/libctf__L: lib/libz__L
2941.endif
2942# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
2943# on select architectures though (see cddl/lib/Makefile)
2944.if ${MACHINE_CPUARCH} != "sparc64"
2945_prebuild_libs+=	lib/libprocstat lib/libproc lib/librtld_db
2946lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L
2947lib/libproc__L: lib/libprocstat__L
2948lib/librtld_db__L: lib/libprocstat__L
2949.endif
2950
2951.if ${MK_CRYPT} != "no"
2952.if ${MK_OPENSSL} != "no"
2953_secure_lib_libcrypto= secure/lib/libcrypto
2954_secure_lib_libssl= secure/lib/libssl
2955lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
2956secure/lib/libcrypto__L: lib/libthr__L
2957.if ${MK_LDNS} != "no"
2958_lib_libldns= lib/libldns
2959lib/libldns__L: secure/lib/libssl__L
2960.endif
2961.if ${MK_OPENSSH} != "no"
2962_secure_lib_libssh= secure/lib/libssh
2963secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
2964.if ${MK_LDNS} != "no"
2965secure/lib/libssh__L: lib/libldns__L
2966.endif
2967.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no"
2968secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
2969    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
2970    lib/libmd__L kerberos5/lib/libroken__L
2971.endif
2972.endif
2973.endif
2974_secure_lib=	secure/lib
2975.endif
2976
2977.if ${MK_KERBEROS} != "no"
2978kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
2979kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2980    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
2981    kerberos5/lib/libwind__L lib/libsqlite3__L
2982kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
2983    kerberos5/lib/libroken__L lib/libcom_err__L
2984kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2985    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
2986kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2987    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
2988    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
2989    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
2990kerberos5/lib/libroken__L: lib/libcrypt__L
2991kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
2992kerberos5/lib/libheimbase__L: lib/libthr__L
2993kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
2994.endif
2995
2996lib/libsqlite3__L: lib/libthr__L
2997
2998.if ${MK_GSSAPI} != "no"
2999_lib_libgssapi=	lib/libgssapi
3000.endif
3001
3002.if ${MK_KERBEROS} != "no"
3003_kerberos5_lib=	kerberos5/lib
3004_kerberos5_lib_libasn1= kerberos5/lib/libasn1
3005_kerberos5_lib_libhdb= kerberos5/lib/libhdb
3006_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
3007_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
3008_kerberos5_lib_libhx509= kerberos5/lib/libhx509
3009_kerberos5_lib_libroken= kerberos5/lib/libroken
3010_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
3011_libsqlite3= lib/libsqlite3
3012_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
3013_kerberos5_lib_libwind= kerberos5/lib/libwind
3014_libcom_err= lib/libcom_err
3015.endif
3016
3017.if ${MK_NIS} != "no"
3018_lib_libypclnt=	lib/libypclnt
3019.endif
3020
3021.if ${MK_OPENSSL} == "no"
3022lib/libradius__L: lib/libmd__L
3023.endif
3024
3025lib/libproc__L: \
3026    ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
3027.if ${MK_CXX} != "no"
3028.if ${MK_LIBCPLUSPLUS} != "no"
3029lib/libproc__L: lib/libcxxrt__L
3030.else # This implies MK_GNUCXX != "no"; see lib/libproc
3031lib/libproc__L: gnu/lib/libsupc++__L
3032.endif
3033.endif
3034
3035.for _lib in ${_prereq_libs}
3036${_lib}__PL: .PHONY .MAKE
3037.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib})
3038	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
3039		cd ${.CURDIR}/${_lib}; \
3040		if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
3041		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
3042		    DIRPRFX=${_lib}/ all; \
3043		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
3044		    DIRPRFX=${_lib}/ install
3045.endif
3046.endfor
3047
3048.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
3049${_lib}__L: .PHONY .MAKE
3050.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib})
3051	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
3052		cd ${.CURDIR}/${_lib}; \
3053		if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
3054		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
3055		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
3056.endif
3057.endfor
3058
3059_prereq_libs: ${_prereq_libs:S/$/__PL/}
3060_startup_libs: ${_startup_libs:S/$/__L/}
3061_prebuild_libs: ${_prebuild_libs:S/$/__L/}
3062_generic_libs: ${_generic_libs:S/$/__L/}
3063
3064# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
3065# 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
3066# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
3067# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
3068# parallel.  This is safe for the world stage of buildworld though since it has
3069# already built libraries in a proper order and installed includes into
3070# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
3071# avoid trashing a system if it crashes mid-install.
3072.if !make(all) || defined(_PARALLEL_SUBDIR_OK)
3073SUBDIR_PARALLEL=
3074.endif
3075
3076.include <bsd.subdir.mk>
3077
3078.if make(check-old) || make(check-old-dirs) || \
3079    make(check-old-files) || make(check-old-libs) || \
3080    make(delete-old) || make(delete-old-dirs) || \
3081    make(delete-old-files) || make(delete-old-libs)
3082
3083#
3084# check for / delete old files section
3085#
3086
3087.include "ObsoleteFiles.inc"
3088
3089OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
3090else you can not start such an application. Consult UPDATING for more \
3091information regarding how to cope with the removal/revision bump of a \
3092specific library."
3093
3094.if !defined(BATCH_DELETE_OLD_FILES)
3095RM_I=-i
3096.else
3097RM_I=-v
3098.endif
3099
3100delete-old-files: .PHONY
3101	@echo ">>> Removing old files (only deletes safe to delete libs)"
3102# Ask for every old file if the user really wants to remove it.
3103# It's annoying, but better safe than sorry.
3104# NB: We cannot pass the list of OLD_FILES as a parameter because the
3105# argument list will get too long. Using .for/.endfor make "loops" will make
3106# the Makefile parser segfault.
3107	@exec 3<&0; \
3108	cd ${.CURDIR}; \
3109	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3110	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | sort | \
3111	while read file; do \
3112		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3113			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
3114			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
3115		fi; \
3116		for ext in debug symbols; do \
3117		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
3118		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3119			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
3120			      <&3; \
3121		  fi; \
3122		done; \
3123	done
3124# Remove catpages without corresponding manpages.
3125	@exec 3<&0; \
3126	find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | sort | \
3127	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
3128	while read catpage; do \
3129		read manpage; \
3130		if [ ! -e "$${manpage}" ]; then \
3131			rm ${RM_I} $${catpage} <&3; \
3132	        fi; \
3133	done
3134	@echo ">>> Old files removed"
3135
3136check-old-files: .PHONY
3137	@echo ">>> Checking for old files"
3138	@cd ${.CURDIR}; \
3139	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3140	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
3141	while read file; do \
3142		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3143		 	echo "${DESTDIR}/$${file}"; \
3144		fi; \
3145		for ext in debug symbols; do \
3146		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3147			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
3148		  fi; \
3149		done; \
3150	done | sort
3151# Check for catpages without corresponding manpages.
3152	@find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \
3153	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
3154	while read catpage; do \
3155		read manpage; \
3156		if [ ! -e "$${manpage}" ]; then \
3157			echo $${catpage}; \
3158	        fi; \
3159	done | sort
3160
3161delete-old-libs: .PHONY
3162	@echo ">>> Removing old libraries"
3163	@echo "${OLD_LIBS_MESSAGE}" | fmt
3164	@exec 3<&0; \
3165	cd ${.CURDIR}; \
3166	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3167	    -V OLD_LIBS | xargs -n1 | sort | \
3168	while read file; do \
3169		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3170			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
3171			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
3172		fi; \
3173		for ext in debug symbols; do \
3174		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
3175		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3176			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
3177			      <&3; \
3178		  fi; \
3179		done; \
3180	done
3181	@echo ">>> Old libraries removed"
3182
3183check-old-libs: .PHONY
3184	@echo ">>> Checking for old libraries"
3185	@cd ${.CURDIR}; \
3186	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3187	    -V OLD_LIBS | xargs -n1 | \
3188	while read file; do \
3189		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
3190			echo "${DESTDIR}/$${file}"; \
3191		fi; \
3192		for ext in debug symbols; do \
3193		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
3194			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
3195		  fi; \
3196		done; \
3197	done | sort
3198
3199delete-old-dirs: .PHONY
3200	@echo ">>> Removing old directories"
3201	@cd ${.CURDIR}; \
3202	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3203	    -V OLD_DIRS | xargs -n1 | sort -r | \
3204	while read dir; do \
3205		if [ -d "${DESTDIR}/$${dir}" ]; then \
3206			rmdir -v "${DESTDIR}/$${dir}" || true; \
3207		elif [ -L "${DESTDIR}/$${dir}" ]; then \
3208			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
3209		fi; \
3210		if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3211			rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \
3212		elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3213			echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
3214		fi; \
3215	done
3216	@echo ">>> Old directories removed"
3217
3218check-old-dirs: .PHONY
3219	@echo ">>> Checking for old directories"
3220	@cd ${.CURDIR}; \
3221	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
3222	    -V OLD_DIRS | xargs -n1 | sort -r | \
3223	while read dir; do \
3224		if [ -d "${DESTDIR}/$${dir}" ]; then \
3225			echo "${DESTDIR}/$${dir}"; \
3226		elif [ -L "${DESTDIR}/$${dir}" ]; then \
3227			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
3228		fi; \
3229		if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3230			echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \
3231		elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
3232			echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
3233		fi; \
3234	done
3235
3236delete-old: delete-old-files delete-old-dirs .PHONY
3237	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
3238
3239check-old: check-old-files check-old-libs check-old-dirs .PHONY
3240	@echo "To remove old files and directories run '${MAKE_CMD} delete-old'."
3241	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
3242
3243.endif
3244
3245#
3246# showconfig - show build configuration.
3247#
3248showconfig: .PHONY
3249	@(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \
3250	  ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u
3251
3252.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
3253DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
3254
3255.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
3256.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF})
3257FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
3258	'${KERNCONFDIR}/${KERNCONF}' ; echo
3259.endif
3260.endif
3261
3262.endif
3263
3264.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
3265DTBOUTPUTPATH= ${.CURDIR}
3266.endif
3267
3268#
3269# Build 'standalone' Device Tree Blob
3270#
3271builddtb: .PHONY
3272	@PATH=${TMPPATH} MACHINE=${TARGET} \
3273	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
3274	    "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
3275
3276###############
3277
3278# cleanworld
3279# In the following, the first 'rm' in a series will usually remove all
3280# files and directories.  If it does not, then there are probably some
3281# files with file flags set, so this unsets them and tries the 'rm' a
3282# second time.  There are situations where this target will be cleaning
3283# some directories via more than one method, but that duplication is
3284# needed to correctly handle all the possible situations.  Removing all
3285# files without file flags set in the first 'rm' instance saves time,
3286# because 'chflags' will need to operate on fewer files afterwards.
3287#
3288# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
3289# created by bsd.obj.mk, except that we don't want to .include that file
3290# in this makefile.  We don't do a cleandir walk if MK_AUTO_OBJ is yes
3291# since it is not possible for files to land in the wrong place.
3292#
3293.if make(cleanworld)
3294BW_CANONICALOBJDIR:=${OBJTOP}/
3295.elif make(cleanuniverse)
3296BW_CANONICALOBJDIR:=${OBJROOT}
3297.if ${MK_UNIFIED_OBJDIR} == "no"
3298.error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled.
3299.endif
3300.endif
3301cleanworld cleanuniverse: .PHONY
3302.if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \
3303    ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA}
3304	-rm -rf ${BW_CANONICALOBJDIR}*
3305	-chflags -R 0 ${BW_CANONICALOBJDIR}
3306	rm -rf ${BW_CANONICALOBJDIR}*
3307.endif
3308.if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \
3309    (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA})
3310.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
3311	#   To be safe in this case, fall back to a 'make cleandir'
3312	${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
3313.endif
3314.endif
3315
3316.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
3317XDEV_CPUTYPE?=${CPUTYPE}
3318.else
3319XDEV_CPUTYPE?=${TARGET_CPUTYPE}
3320.endif
3321
3322NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
3323	MK_MAN=no MK_NLS=no MK_PROFILE=no \
3324	MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
3325	TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
3326	CPUTYPE=${XDEV_CPUTYPE}
3327
3328XDDIR=${TARGET_ARCH}-freebsd
3329XDTP?=/usr/${XDDIR}
3330.if ${XDTP:N/*}
3331.error XDTP variable should be an absolute path
3332.endif
3333
3334CDBOBJROOT=	${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/
3335CDBOBJTOP=	${CDBOBJROOT}${XDDIR}
3336CDBENV= \
3337	INSTALL="sh ${.CURDIR}/tools/install.sh"
3338CDENV= ${CDBENV} \
3339	TOOLS_PREFIX=${XDTP}
3340CDMAKEARGS= \
3341	OBJTOP=${CDBOBJTOP:Q} \
3342	OBJROOT=${CDBOBJROOT:Q}
3343CD2MAKEARGS= ${CDMAKEARGS}
3344
3345.if ${WANT_COMPILER_TYPE} == gcc || \
3346    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
3347# GCC requires -isystem and -L when using a cross-compiler.  --sysroot
3348# won't set header path and -L is used to ensure the base library path
3349# is added before the port PREFIX library path.
3350CD2CFLAGS+=	-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib
3351# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
3352# combined with --sysroot.
3353CD2CFLAGS+=	-B${XDDESTDIR}/usr/lib
3354# Force using libc++ for external GCC.
3355.if defined(X_COMPILER_TYPE) && \
3356    ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800
3357CD2CXXFLAGS+=	-isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \
3358		-nostdinc++
3359.endif
3360.endif
3361CD2CFLAGS+=	--sysroot=${XDDESTDIR}/
3362CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \
3363	CPP="${CPP} ${CD2CFLAGS}" \
3364	MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
3365
3366CDTMP=	${OBJTOP}/${XDDIR}/tmp
3367CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${CDMAKEARGS} ${NOFUN}
3368CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} \
3369	${MAKE} ${CD2MAKEARGS} ${NOFUN}
3370.if ${MK_META_MODE} != "no"
3371# Don't rebuild build-tools targets during normal build.
3372CD2MAKE+=	BUILD_TOOLS_META=.NOMETA
3373.endif
3374XDDESTDIR=${DESTDIR}${XDTP}
3375
3376.ORDER: xdev-build xdev-install xdev-links
3377xdev: xdev-build xdev-install .PHONY
3378
3379.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
3380xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY
3381
3382_xb-worldtmp: .PHONY
3383	mkdir -p ${CDTMP}/usr
3384	${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
3385	    -p ${CDTMP}/usr >/dev/null
3386
3387_xb-bootstrap-tools: .PHONY
3388.for _tool in \
3389    ${_clang_tblgen} \
3390    ${_gperf} \
3391    ${_yacc}
3392	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
3393	cd ${.CURDIR}/${_tool}; \
3394	if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
3395	${CDMAKE} DIRPRFX=${_tool}/ all; \
3396	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
3397.endfor
3398
3399_xb-build-tools: .PHONY
3400	${_+_}@cd ${.CURDIR}; \
3401	${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools
3402
3403XDEVDIRS= \
3404    ${_clang_libs} \
3405    ${_lld} \
3406    ${_binutils} \
3407    ${_elftctools} \
3408    usr.bin/ar \
3409    ${_clang} \
3410    ${_gcc}
3411
3412_xb-cross-tools: .PHONY
3413.for _tool in ${XDEVDIRS}
3414	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \
3415	cd ${.CURDIR}/${_tool}; \
3416	if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
3417	${CDMAKE} DIRPRFX=${_tool}/ all
3418.endfor
3419
3420_xi-mtree: .PHONY
3421	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
3422	mkdir -p ${XDDESTDIR}
3423	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \
3424	    -p ${XDDESTDIR} >/dev/null
3425	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
3426	    -p ${XDDESTDIR}/usr >/dev/null
3427	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \
3428	    -p ${XDDESTDIR}/usr/include >/dev/null
3429.if defined(_LIBCOMPAT)
3430	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
3431	    -p ${XDDESTDIR}/usr >/dev/null
3432.endif
3433.if ${MK_TESTS} != "no"
3434	mkdir -p ${XDDESTDIR}${TESTSBASE}
3435	${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
3436	    -p ${XDDESTDIR}${TESTSBASE} >/dev/null
3437.endif
3438
3439.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
3440xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY
3441
3442_xi-cross-tools: .PHONY
3443	@echo "_xi-cross-tools"
3444.for _tool in ${XDEVDIRS}
3445	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
3446	cd ${.CURDIR}/${_tool}; \
3447	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
3448.endfor
3449
3450_xi-includes: .PHONY
3451.if !defined(NO_OBJWALK)
3452	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \
3453		DESTDIR=${XDDESTDIR}
3454.endif
3455	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
3456		DESTDIR=${XDDESTDIR}
3457
3458_xi-libraries: .PHONY
3459	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
3460		DESTDIR=${XDDESTDIR}
3461
3462xdev-links: .PHONY
3463	${_+_}cd ${XDDESTDIR}/usr/bin; \
3464	mkdir -p ../../../../usr/bin; \
3465		for i in *; do \
3466			ln -sf ../../${XDTP}/usr/bin/$$i \
3467			    ../../../../usr/bin/${XDDIR}-$$i; \
3468			ln -sf ../../${XDTP}/usr/bin/$$i \
3469			    ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \
3470		done
3471