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