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