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