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