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