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