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