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