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