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