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