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