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