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