xref: /freebsd/Makefile.inc1 (revision f391d6bc1d0464f62f1b8264666c897a680156b1)
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
53SRCDIR?=	${.CURDIR}
54LOCALBASE?=	/usr/local
55
56# Cross toolchain changes must be in effect before bsd.compiler.mk
57# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes.
58.if defined(CROSS_TOOLCHAIN)
59.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk"
60CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}"
61.endif
62.if defined(CROSS_TOOLCHAIN_PREFIX)
63CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
64.endif
65
66XCOMPILERS=	CC CXX CPP
67.for COMPILER in ${XCOMPILERS}
68.if defined(CROSS_COMPILER_PREFIX)
69X${COMPILER}?=	${CROSS_COMPILER_PREFIX}${${COMPILER}}
70.else
71X${COMPILER}?=	${${COMPILER}}
72.endif
73.endfor
74# If a full path to an external cross compiler is given, don't build
75# a cross compiler.
76.if ${XCC:N${CCACHE_BIN}:M/*}
77MK_CLANG_BOOTSTRAP=	no
78MK_GCC_BOOTSTRAP=	no
79.endif
80
81# Pull in COMPILER_TYPE and COMPILER_FREEBSD_VERSION early.
82.include <bsd.compiler.mk>
83.include "share/mk/src.opts.mk"
84
85# Check if there is a local compiler that can satisfy as an external compiler.
86# Which compiler is expected to be used?
87.if ${MK_CLANG_BOOTSTRAP} == "yes"
88WANT_COMPILER_TYPE=	clang
89.elif ${MK_GCC_BOOTSTRAP} == "yes"
90WANT_COMPILER_TYPE=	gcc
91.else
92WANT_COMPILER_TYPE=
93.endif
94.if !defined(WANT_COMPILER_FREEBSD_VERSION)
95.if ${WANT_COMPILER_TYPE} == "clang"
96WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h
97WANT_COMPILER_FREEBSD_VERSION!= \
98	awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \
99	${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
100WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc
101WANT_COMPILER_VERSION!= \
102	awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
103	${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
104.elif ${WANT_COMPILER_TYPE} == "gcc"
105WANT_COMPILER_FREEBSD_VERSION_FILE= gnu/usr.bin/cc/cc_tools/freebsd-native.h
106WANT_COMPILER_FREEBSD_VERSION!= \
107	awk '$$2 == "FBSD_CC_VER" {printf("%d\n", $$3)}' \
108	${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
109WANT_COMPILER_VERSION_FILE= contrib/gcc/BASE-VER
110WANT_COMPILER_VERSION!= \
111	awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3}' \
112	${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
113.endif
114.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION
115.endif	# !defined(WANT_COMPILER_FREEBSD_VERSION)
116# It needs to be the same revision as we would build for the bootstrap.
117# If the expected vs CC is different then we can't skip.
118# GCC cannot be used for cross-arch yet.  For clang we pass -target later if
119# TARGET_ARCH!=MACHINE_ARCH.
120.if ${MK_SYSTEM_COMPILER} == "yes" && \
121    (${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
122    !make(showconfig) && !make(native-xtools) && !make(xdev*) && \
123    ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE} && \
124    (${COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
125    ${COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \
126    ${COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION}
127# Everything matches, disable the bootstrap compiler.
128MK_CLANG_BOOTSTRAP=	no
129MK_GCC_BOOTSTRAP=	no
130USING_SYSTEM_COMPILER=	yes
131.endif	# ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE}
132USING_SYSTEM_COMPILER?=	no
133TEST_SYSTEM_COMPILER_VARS= \
134	USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \
135	MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP MK_GCC_BOOTSTRAP \
136	WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \
137	WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \
138	CC COMPILER_TYPE COMPILER_VERSION COMPILER_FREEBSD_VERSION
139test-system-compiler: .PHONY
140.for v in ${TEST_SYSTEM_COMPILER_VARS}
141	${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}"
142.endfor
143.if ${USING_SYSTEM_COMPILER} == "yes" && \
144    (make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \
145    make(toolchain) || make(_cross-tools))
146.info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree.  Not bootstrapping a cross-compiler.
147.endif
148
149# For installworld need to ensure that the looked-up compiler metadata is
150# passed along rather than trying to run cc from the restricted
151# STRICTTMPPATH.
152.if ${MK_CLANG_BOOTSTRAP} == "no" && ${MK_GCC_BOOTSTRAP} == "no"
153.if !defined(X_COMPILER_TYPE)
154CROSSENV+=	COMPILER_VERSION=${COMPILER_VERSION} \
155		COMPILER_TYPE=${COMPILER_TYPE} \
156		COMPILER_FREEBSD_VERSION=${COMPILER_FREEBSD_VERSION}
157.else
158CROSSENV+=	COMPILER_VERSION=${X_COMPILER_VERSION} \
159		COMPILER_TYPE=${X_COMPILER_TYPE} \
160		COMPILER_FREEBSD_VERSION=${X_COMPILER_FREEBSD_VERSION}
161.endif
162.endif
163
164# Handle external binutils.
165.if defined(CROSS_TOOLCHAIN_PREFIX)
166CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
167.endif
168# If we do not have a bootstrap binutils (because the in-tree one does not
169# support the target architecture), provide a default cross-binutils prefix.
170# This allows aarch64 builds, for example, to automatically use the
171# aarch64-binutils port or package.
172.if !make(showconfig)
173.if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \
174    !defined(CROSS_BINUTILS_PREFIX)
175CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/
176.if !exists(${CROSS_BINUTILS_PREFIX})
177.error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX.
178.endif
179.endif
180.endif
181XBINUTILS=	AS AR LD NM OBJCOPY RANLIB SIZE STRINGS
182.for BINUTIL in ${XBINUTILS}
183.if defined(CROSS_BINUTILS_PREFIX) && \
184    exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}})
185X${BINUTIL}?=	${CROSS_BINUTILS_PREFIX}${${BINUTIL}}
186.else
187X${BINUTIL}?=	${${BINUTIL}}
188.endif
189.endfor
190
191
192# We must do lib/ and libexec/ before bin/ in case of a mid-install error to
193# keep the users system reasonably usable.  For static->dynamic root upgrades,
194# we don't want to install a dynamic binary without rtld and the needed
195# libraries.  More commonly, for dynamic root, we don't want to install a
196# binary that requires a newer library version that hasn't been installed yet.
197# This ordering is not a guarantee though.  The only guarantee of a working
198# system here would require fine-grained ordering of all components based
199# on their dependencies.
200.if !empty(SUBDIR_OVERRIDE)
201SUBDIR=	${SUBDIR_OVERRIDE}
202.else
203SUBDIR=	lib libexec
204.if !defined(NO_ROOT) && (make(installworld) || make(install))
205# Ensure libraries are installed before progressing.
206SUBDIR+=.WAIT
207.endif
208SUBDIR+=bin
209.if ${MK_CDDL} != "no"
210SUBDIR+=cddl
211.endif
212SUBDIR+=gnu include
213.if ${MK_KERBEROS} != "no"
214SUBDIR+=kerberos5
215.endif
216.if ${MK_RESCUE} != "no"
217SUBDIR+=rescue
218.endif
219SUBDIR+=sbin
220.if ${MK_CRYPT} != "no"
221SUBDIR+=secure
222.endif
223.if !defined(NO_SHARE)
224SUBDIR+=share
225.endif
226SUBDIR+=sys usr.bin usr.sbin
227.if ${MK_TESTS} != "no"
228SUBDIR+=	tests
229.endif
230.if ${MK_OFED} != "no"
231SUBDIR+=contrib/ofed
232.endif
233
234# Local directories are last, since it is nice to at least get the base
235# system rebuilt before you do them.
236.for _DIR in ${LOCAL_DIRS}
237.if exists(${.CURDIR}/${_DIR}/Makefile)
238SUBDIR+=	${_DIR}
239.endif
240.endfor
241# Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR
242# of a LOCAL_DIRS directory.  This allows LOCAL_DIRS=foo and
243# LOCAL_LIB_DIRS=foo/lib to behave as expected.
244.for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|}
245_REDUNDENT_LIB_DIRS+=    ${LOCAL_LIB_DIRS:M${_DIR}*}
246.endfor
247.for _DIR in ${LOCAL_LIB_DIRS}
248.if empty(_REDUNDENT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)
249SUBDIR+=	${_DIR}
250.else
251.warning ${_DIR} not added to SUBDIR list.  See UPDATING 20141121.
252.endif
253.endfor
254
255# We must do etc/ last as it hooks into building the man whatis file
256# by calling 'makedb' in share/man.  This is only relevant for
257# install/distribute so they build the whatis file after every manpage is
258# installed.
259.if make(installworld) || make(install)
260SUBDIR+=.WAIT
261.endif
262SUBDIR+=etc
263
264.endif	# !empty(SUBDIR_OVERRIDE)
265
266.if defined(NOCLEAN)
267.warning NOCLEAN option is deprecated. Use NO_CLEAN instead.
268NO_CLEAN=	${NOCLEAN}
269.endif
270.if defined(NO_CLEANDIR)
271CLEANDIR=	clean cleandepend
272.else
273CLEANDIR=	cleandir
274.endif
275
276.if ${MK_META_MODE} == "yes"
277# If filemon is used then we can rely on the build being incremental-safe.
278# The .meta files will also track the build command and rebuild should
279# it change.
280.if empty(.MAKE.MODE:Mnofilemon)
281NO_CLEAN=	t
282.endif
283.endif
284
285LOCAL_TOOL_DIRS?=
286PACKAGEDIR?=	${DESTDIR}/${DISTDIR}
287
288.if empty(SHELL:M*csh*)
289BUILDENV_SHELL?=${SHELL}
290.else
291BUILDENV_SHELL?=/bin/sh
292.endif
293
294.if !defined(SVN) || empty(SVN)
295. for _P in /usr/bin /usr/local/bin
296.  for _S in svn svnlite
297.   if exists(${_P}/${_S})
298SVN=   ${_P}/${_S}
299.   endif
300.  endfor
301. endfor
302.endif
303SVNFLAGS?=	-r HEAD
304
305MAKEOBJDIRPREFIX?=	/usr/obj
306.if !defined(OSRELDATE)
307.if exists(/usr/include/osreldate.h)
308OSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
309		/usr/include/osreldate.h
310.else
311OSRELDATE=	0
312.endif
313.export OSRELDATE
314.endif
315
316# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION.
317.if !defined(_REVISION)
318_REVISION!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V REVISION
319.export _REVISION
320.endif
321.if !defined(_BRANCH)
322_BRANCH!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V BRANCH
323.export _BRANCH
324.endif
325.if !defined(SRCRELDATE)
326SRCRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
327		${SRCDIR}/sys/sys/param.h
328.export SRCRELDATE
329.endif
330.if !defined(VERSION)
331VERSION=	FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
332.export VERSION
333.endif
334
335.if !defined(PKG_VERSION)
336.if ${_BRANCH:MSTABLE*} || ${_BRANCH:MCURRENT*} || ${_BRANCH:MALPHA*}
337TIMENOW=	%Y%m%d%H%M%S
338EXTRA_REVISION=	.s${TIMENOW:gmtime}
339.endif
340.if ${_BRANCH:M*-p*}
341EXTRA_REVISION=	_${_BRANCH:C/.*-p([0-9]+$)/\1/}
342.endif
343PKG_VERSION=	${_REVISION}${EXTRA_REVISION}
344.endif
345
346KNOWN_ARCHES?=	aarch64/arm64 \
347		amd64 \
348		arm \
349		armeb/arm \
350		armv6/arm \
351		i386 \
352		i386/pc98 \
353		mips \
354		mipsel/mips \
355		mips64el/mips \
356		mipsn32el/mips \
357		mips64/mips \
358		mipsn32/mips \
359		mipshf/mips \
360		mipselhf/mips \
361		mips64elhf/mips \
362		mips64hf/mips \
363		powerpc \
364		powerpc64/powerpc \
365		powerpcspe/powerpc \
366		riscv64/riscv \
367		riscv64sf/riscv \
368		sparc64
369
370.if ${TARGET} == ${TARGET_ARCH}
371_t=		${TARGET}
372.else
373_t=		${TARGET_ARCH}/${TARGET}
374.endif
375.for _t in ${_t}
376.if empty(KNOWN_ARCHES:M${_t})
377.error Unknown target ${TARGET_ARCH}:${TARGET}.
378.endif
379.endfor
380
381.if ${TARGET} == ${MACHINE}
382TARGET_CPUTYPE?=${CPUTYPE}
383.else
384TARGET_CPUTYPE?=
385.endif
386
387.if !empty(TARGET_CPUTYPE)
388_TARGET_CPUTYPE=${TARGET_CPUTYPE}
389.else
390_TARGET_CPUTYPE=dummy
391.endif
392_CPUTYPE!=	MK_AUTO_OBJ=no MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
393		-f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
394.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
395.error CPUTYPE global should be set with ?=.
396.endif
397.if make(buildworld)
398BUILD_ARCH!=	uname -p
399.if ${MACHINE_ARCH} != ${BUILD_ARCH}
400.error To cross-build, set TARGET_ARCH.
401.endif
402.endif
403.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
404OBJTREE=	${MAKEOBJDIRPREFIX}
405.else
406OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
407.endif
408WORLDTMP=	${OBJTREE}${.CURDIR}/tmp
409BPATH=		${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin
410XPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin
411STRICTTMPPATH=	${BPATH}:${XPATH}
412TMPPATH=	${STRICTTMPPATH}:${PATH}
413
414#
415# Avoid running mktemp(1) unless actually needed.
416# It may not be functional, e.g., due to new ABI
417# when in the middle of installing over this system.
418#
419.if make(distributeworld) || make(installworld) || make(stageworld)
420INSTALLTMP!=	/usr/bin/mktemp -d -u -t install
421.endif
422
423.if make(stagekernel) || make(distributekernel)
424TAGS+=		kernel
425PACKAGE=	kernel
426.endif
427
428#
429# Building a world goes through the following stages
430#
431# 1. legacy stage [BMAKE]
432#	This stage is responsible for creating compatibility
433#	shims that are needed by the bootstrap-tools,
434#	build-tools and cross-tools stages. These are generally
435#	APIs that tools from one of those three stages need to
436#	build that aren't present on the host.
437# 1. bootstrap-tools stage [BMAKE]
438#	This stage is responsible for creating programs that
439#	are needed for backward compatibility reasons. They
440#	are not built as cross-tools.
441# 2. build-tools stage [TMAKE]
442#	This stage is responsible for creating the object
443#	tree and building any tools that are needed during
444#	the build process. Some programs are listed during
445#	this phase because they build binaries to generate
446#	files needed to build these programs. This stage also
447#	builds the 'build-tools' target rather than 'all'.
448# 3. cross-tools stage [XMAKE]
449#	This stage is responsible for creating any tools that
450#	are needed for building the system. A cross-compiler is one
451#	of them. This differs from build tools in two ways:
452#	1. the 'all' target is built rather than 'build-tools'
453#	2. these tools are installed into TMPPATH for stage 4.
454# 4. world stage [WMAKE]
455#	This stage actually builds the world.
456# 5. install stage (optional) [IMAKE]
457#	This stage installs a previously built world.
458#
459
460BOOTSTRAPPING?=	0
461# Keep these in sync -- see below for special case exception
462MINIMUM_SUPPORTED_OSREL?= 900044
463MINIMUM_SUPPORTED_REL?= 9.1
464
465# Common environment for world related stages
466CROSSENV+=	MAKEOBJDIRPREFIX=${OBJTREE} \
467		MACHINE_ARCH=${TARGET_ARCH} \
468		MACHINE=${TARGET} \
469		CPUTYPE=${TARGET_CPUTYPE}
470.if ${MK_META_MODE} != "no"
471# Don't rebuild build-tools targets during normal build.
472CROSSENV+=	BUILD_TOOLS_META=.NOMETA_CMP
473.endif
474.if ${MK_GROFF} != "no"
475CROSSENV+=	GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
476		GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
477		GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
478.endif
479.if defined(TARGET_CFLAGS)
480CROSSENV+=	${TARGET_CFLAGS}
481.endif
482
483# bootstrap-tools stage
484BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
485		TOOLS_PREFIX=${WORLDTMP} \
486		PATH=${BPATH}:${PATH} \
487		WORLDTMP=${WORLDTMP} \
488		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
489# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile
490BSARGS= 	DESTDIR= \
491		BOOTSTRAPPING=${OSRELDATE} \
492		SSP_CFLAGS= \
493		MK_HTML=no NO_LINT=yes MK_MAN=no \
494		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
495		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
496		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
497		MK_LLDB=no MK_TESTS=no \
498		MK_INCLUDES=yes
499
500BMAKE=		MAKEOBJDIRPREFIX=${WORLDTMP} \
501		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
502		${BSARGS}
503
504# build-tools stage
505TMAKE=		MAKEOBJDIRPREFIX=${OBJTREE} \
506		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
507		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
508		DESTDIR= \
509		BOOTSTRAPPING=${OSRELDATE} \
510		SSP_CFLAGS= \
511		-DNO_LINT \
512		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
513		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
514		MK_LLDB=no MK_TESTS=no
515
516# cross-tools stage
517XMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
518		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
519		MK_GDB=no MK_TESTS=no
520
521# kernel-tools stage
522KTMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
523		PATH=${BPATH}:${PATH} \
524		WORLDTMP=${WORLDTMP}
525KTMAKE=		TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \
526		${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
527		DESTDIR= \
528		BOOTSTRAPPING=${OSRELDATE} \
529		SSP_CFLAGS= \
530		MK_HTML=no -DNO_LINT MK_MAN=no \
531		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
532		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no
533
534# world stage
535WMAKEENV=	${CROSSENV} \
536		INSTALL="sh ${.CURDIR}/tools/install.sh" \
537		PATH=${TMPPATH}
538
539# make hierarchy
540HMAKE=		PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
541.if defined(NO_ROOT)
542HMAKE+=		PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
543.endif
544
545CROSSENV+=	CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCXXFLAGS} ${XCFLAGS}" \
546		CPP="${XCPP} ${XCFLAGS}" \
547		AS="${XAS}" AR="${XAR}" LD="${XLD}" LLVM_LINK="${XLLVM_LINK}" \
548		NM=${XNM} OBJCOPY="${XOBJCOPY}" \
549		RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \
550		SIZE="${XSIZE}"
551
552.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
553# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
554# directory, but the compiler will look in the right place for its
555# tools so we don't need to tell it where to look.
556BFLAGS+=	-B${CROSS_BINUTILS_PREFIX}
557.endif
558
559
560# The internal bootstrap compiler has a default sysroot set by TOOLS_PREFIX
561# and target set by TARGET/TARGET_ARCH.  However, there are several needs to
562# always pass an explicit --sysroot and -target.
563# - External compiler needs sysroot and target flags.
564# - External ld needs sysroot.
565# - To be clear about the use of a sysroot when using the internal compiler.
566# - Easier debugging.
567# - Allowing WITH_SYSTEM_COMPILER+WITH_META_MODE to work together due to
568#   the flip-flopping build command when sometimes using external and
569#   sometimes using internal.
570# - Allow using lld which has no support for default paths.
571.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX})
572BFLAGS+=	-B${WORLDTMP}/usr/bin
573.endif
574.if ${TARGET} == "arm"
575.if ${TARGET_ARCH:Marmv6*} != "" && ${TARGET_CPUTYPE:M*soft*} == ""
576TARGET_ABI=	gnueabihf
577.else
578TARGET_ABI=	gnueabi
579.endif
580.endif
581.if ${WANT_COMPILER_TYPE} == gcc || \
582    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
583# GCC requires -isystem and -L when using a cross-compiler.  --sysroot
584# won't set header path and -L is used to ensure the base library path
585# is added before the port PREFIX library path.
586XCFLAGS+=	-isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib
587# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
588# combined with --sysroot.
589XCFLAGS+=	-B${WORLDTMP}/usr/lib
590# Force using libc++ for external GCC.
591# XXX: This should be checking MK_GNUCXX == no
592.if ${X_COMPILER_VERSION} >= 40800
593XCXXFLAGS+=	-isystem ${WORLDTMP}/usr/include/c++/v1 -std=c++11 \
594		-nostdinc++ -L${WORLDTMP}/../lib/libc++
595.endif
596.elif ${WANT_COMPILER_TYPE} == clang || \
597    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang)
598TARGET_ABI?=	unknown
599TARGET_TRIPLE?=	${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd12.0
600XCFLAGS+=	-target ${TARGET_TRIPLE}
601.endif
602XCFLAGS+=	--sysroot=${WORLDTMP}
603
604.if !empty(BFLAGS)
605XCFLAGS+=	${BFLAGS}
606.endif
607
608.if ${MK_LIB32} != "no" && (${TARGET_ARCH} == "amd64" || \
609    ${TARGET_ARCH} == "powerpc64")
610LIBCOMPAT= 32
611.include "Makefile.libcompat"
612.elif ${MK_LIBSOFT} != "no" && ${TARGET_ARCH} == "armv6"
613LIBCOMPAT= SOFT
614.include "Makefile.libcompat"
615.endif
616
617WMAKE=		${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP}
618
619IMAKEENV=	${CROSSENV}
620IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1 \
621		${IMAKE_INSTALL} ${IMAKE_MTREE}
622.if empty(.MAKEFLAGS:M-n)
623IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
624		LD_LIBRARY_PATH=${INSTALLTMP} \
625		PATH_LOCALE=${INSTALLTMP}/locale
626IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
627.else
628IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
629.endif
630.if defined(DB_FROM_SRC)
631INSTALLFLAGS+=	-N ${.CURDIR}/etc
632MTREEFLAGS+=	-N ${.CURDIR}/etc
633.endif
634_INSTALL_DDIR=	${DESTDIR}/${DISTDIR}
635INSTALL_DDIR=	${_INSTALL_DDIR:S://:/:g:C:/$::}
636.if defined(NO_ROOT)
637METALOG?=	${DESTDIR}/${DISTDIR}/METALOG
638IMAKE+=		-DNO_ROOT METALOG=${METALOG}
639INSTALLFLAGS+=	-U -M ${METALOG} -D ${INSTALL_DDIR}
640MTREEFLAGS+=	-W
641.endif
642.if defined(BUILD_PKGS)
643INSTALLFLAGS+=	-h sha256
644.endif
645.if defined(DB_FROM_SRC) || defined(NO_ROOT)
646IMAKE_INSTALL=	INSTALL="install ${INSTALLFLAGS}"
647IMAKE_MTREE=	MTREE_CMD="mtree ${MTREEFLAGS}"
648.endif
649
650# kernel stage
651KMAKEENV=	${WMAKEENV}
652KMAKE=		${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
653
654#
655# buildworld
656#
657# Attempt to rebuild the entire system, with reasonable chance of
658# success, regardless of how old your existing system is.
659#
660_worldtmp: .PHONY
661.if ${.CURDIR:C/[^,]//g} != ""
662#	The m4 build of sendmail files doesn't like it if ',' is used
663#	anywhere in the path of it's files.
664	@echo
665	@echo "*** Error: path to source tree contains a comma ','"
666	@echo
667	false
668.endif
669	@echo
670	@echo "--------------------------------------------------------------"
671	@echo ">>> Rebuilding the temporary build tree"
672	@echo "--------------------------------------------------------------"
673.if !defined(NO_CLEAN)
674	rm -rf ${WORLDTMP}
675.if defined(LIBCOMPAT)
676	rm -rf ${LIBCOMPATTMP}
677.endif
678.else
679	rm -rf ${WORLDTMP}/legacy/usr/include
680.endif
681.for _dir in \
682    lib lib/casper usr legacy/bin legacy/usr
683	mkdir -p ${WORLDTMP}/${_dir}
684.endfor
685	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
686	    -p ${WORLDTMP}/legacy/usr >/dev/null
687.if ${MK_GROFF} != "no"
688	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
689	    -p ${WORLDTMP}/legacy/usr >/dev/null
690.endif
691	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
692	    -p ${WORLDTMP}/legacy/usr/include >/dev/null
693	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
694	    -p ${WORLDTMP}/usr >/dev/null
695	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
696	    -p ${WORLDTMP}/usr/include >/dev/null
697	ln -sf ${.CURDIR}/sys ${WORLDTMP}
698.if ${MK_DEBUG_FILES} != "no"
699	# We could instead disable debug files for these build stages
700	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
701	    -p ${WORLDTMP}/legacy/usr/lib >/dev/null
702	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
703	    -p ${WORLDTMP}/usr/lib >/dev/null
704.endif
705.if defined(LIBCOMPAT)
706	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
707	    -p ${WORLDTMP}/usr >/dev/null
708.if ${MK_DEBUG_FILES} != "no"
709	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
710	    -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null
711	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
712	    -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null
713.endif
714.endif
715.if ${MK_TESTS} != "no"
716	mkdir -p ${WORLDTMP}${TESTSBASE}
717	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
718	    -p ${WORLDTMP}${TESTSBASE} >/dev/null
719.if ${MK_DEBUG_FILES} != "no"
720	mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE}
721	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
722	    -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null
723.endif
724.endif
725.for _mtree in ${LOCAL_MTREE}
726	mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
727.endfor
728_legacy:
729	@echo
730	@echo "--------------------------------------------------------------"
731	@echo ">>> stage 1.1: legacy release compatibility shims"
732	@echo "--------------------------------------------------------------"
733	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
734_bootstrap-tools:
735	@echo
736	@echo "--------------------------------------------------------------"
737	@echo ">>> stage 1.2: bootstrap tools"
738	@echo "--------------------------------------------------------------"
739	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
740_cleanobj:
741.if !defined(NO_CLEAN)
742	@echo
743	@echo "--------------------------------------------------------------"
744	@echo ">>> stage 2.1: cleaning up the object tree"
745	@echo "--------------------------------------------------------------"
746	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR}
747.if defined(LIBCOMPAT)
748	${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} -f Makefile.inc1 ${CLEANDIR}
749.endif
750.endif
751_obj:
752	@echo
753	@echo "--------------------------------------------------------------"
754	@echo ">>> stage 2.2: rebuilding the object tree"
755	@echo "--------------------------------------------------------------"
756	${_+_}cd ${.CURDIR}; ${WMAKE} obj
757_build-tools:
758	@echo
759	@echo "--------------------------------------------------------------"
760	@echo ">>> stage 2.3: build tools"
761	@echo "--------------------------------------------------------------"
762	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
763_cross-tools:
764	@echo
765	@echo "--------------------------------------------------------------"
766	@echo ">>> stage 3: cross tools"
767	@echo "--------------------------------------------------------------"
768	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
769	${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
770_includes:
771	@echo
772	@echo "--------------------------------------------------------------"
773	@echo ">>> stage 4.1: building includes"
774	@echo "--------------------------------------------------------------"
775# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need
776# headers from default SUBDIR.  Do SUBDIR_OVERRIDE includes last.
777	${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \
778	    MK_INCLUDES=yes includes
779.if !empty(SUBDIR_OVERRIDE) && make(buildworld)
780	${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes
781.endif
782_libraries:
783	@echo
784	@echo "--------------------------------------------------------------"
785	@echo ">>> stage 4.2: building libraries"
786	@echo "--------------------------------------------------------------"
787	${_+_}cd ${.CURDIR}; \
788	    ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
789	    MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} libraries
790everything: .PHONY
791	@echo
792	@echo "--------------------------------------------------------------"
793	@echo ">>> stage 4.3: building everything"
794	@echo "--------------------------------------------------------------"
795	${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all
796
797WMAKE_TGTS=
798WMAKE_TGTS+=	_worldtmp _legacy
799.if empty(SUBDIR_OVERRIDE)
800WMAKE_TGTS+=	_bootstrap-tools
801.endif
802WMAKE_TGTS+=	_cleanobj _obj _build-tools _cross-tools
803WMAKE_TGTS+=	_includes _libraries
804WMAKE_TGTS+=	everything
805.if defined(LIBCOMPAT) && empty(SUBDIR_OVERRIDE)
806WMAKE_TGTS+=	build${libcompat}
807.endif
808
809buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY
810.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
811
812buildworld_prologue: .PHONY
813	@echo "--------------------------------------------------------------"
814	@echo ">>> World build started on `LC_ALL=C date`"
815	@echo "--------------------------------------------------------------"
816
817buildworld_epilogue: .PHONY
818	@echo
819	@echo "--------------------------------------------------------------"
820	@echo ">>> World build completed on `LC_ALL=C date`"
821	@echo "--------------------------------------------------------------"
822
823#
824# We need to have this as a target because the indirection between Makefile
825# and Makefile.inc1 causes the correct PATH to be used, rather than a
826# modification of the current environment's PATH.  In addition, we need
827# to quote multiword values.
828#
829buildenvvars: .PHONY
830	@echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@}
831
832.if ${.TARGETS:Mbuildenv}
833.if ${.MAKEFLAGS:M-j}
834.error The buildenv target is incompatible with -j
835.endif
836.endif
837BUILDENV_DIR?=	${.CURDIR}
838buildenv: .PHONY
839	@echo Entering world for ${TARGET_ARCH}:${TARGET}
840.if ${BUILDENV_SHELL:M*zsh*}
841	@echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE}
842.endif
843	@cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \
844	    || true
845
846TOOLCHAIN_TGTS=	${WMAKE_TGTS:Neverything:Nbuild${libcompat}}
847toolchain: ${TOOLCHAIN_TGTS} .PHONY
848kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries} .PHONY
849
850#
851# installcheck
852#
853# Checks to be sure system is ready for installworld/installkernel.
854#
855installcheck: _installcheck_world _installcheck_kernel .PHONY
856_installcheck_world: .PHONY
857_installcheck_kernel: .PHONY
858
859#
860# Require DESTDIR to be set if installing for a different architecture or
861# using the user/group database in the source tree.
862#
863.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
864    defined(DB_FROM_SRC)
865.if !make(distributeworld)
866_installcheck_world: __installcheck_DESTDIR
867_installcheck_kernel: __installcheck_DESTDIR
868__installcheck_DESTDIR: .PHONY
869.if !defined(DESTDIR) || empty(DESTDIR)
870	@echo "ERROR: Please set DESTDIR!"; \
871	false
872.endif
873.endif
874.endif
875
876.if !defined(DB_FROM_SRC)
877#
878# Check for missing UIDs/GIDs.
879#
880CHECK_UIDS=	auditdistd
881CHECK_GIDS=	audit
882.if ${MK_SENDMAIL} != "no"
883CHECK_UIDS+=	smmsp
884CHECK_GIDS+=	smmsp
885.endif
886.if ${MK_PF} != "no"
887CHECK_UIDS+=	proxy
888CHECK_GIDS+=	proxy authpf
889.endif
890.if ${MK_UNBOUND} != "no"
891CHECK_UIDS+=	unbound
892CHECK_GIDS+=	unbound
893.endif
894_installcheck_world: __installcheck_UGID
895__installcheck_UGID: .PHONY
896.for uid in ${CHECK_UIDS}
897	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
898		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
899		false; \
900	fi
901.endfor
902.for gid in ${CHECK_GIDS}
903	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
904		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
905		false; \
906	fi
907.endfor
908.endif
909
910#
911# Required install tools to be saved in a scratch dir for safety.
912#
913.if ${MK_ZONEINFO} != "no"
914_zoneinfo=	zic tzsetup
915.endif
916
917ITOOLS=	[ awk cap_mkdb cat chflags chmod chown cmp cp \
918	date echo egrep find grep id install ${_install-info} \
919	ln make mkdir mtree mv pwd_mkdb \
920	rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \
921	${LOCAL_ITOOLS}
922
923# Needed for share/man
924.if ${MK_MAN_UTILS} != "no"
925ITOOLS+=makewhatis
926.endif
927
928#
929# distributeworld
930#
931# Distributes everything compiled by a `buildworld'.
932#
933# installworld
934#
935# Installs everything compiled by a 'buildworld'.
936#
937
938# Non-base distributions produced by the base system
939EXTRA_DISTRIBUTIONS=	doc
940.if defined(LIBCOMPAT)
941EXTRA_DISTRIBUTIONS+=	lib${libcompat}
942.endif
943.if ${MK_TESTS} != "no"
944EXTRA_DISTRIBUTIONS+=	tests
945.endif
946
947DEBUG_DISTRIBUTIONS=
948.if ${MK_DEBUG_FILES} != "no"
949DEBUG_DISTRIBUTIONS+=	base ${EXTRA_DISTRIBUTIONS:S,doc,,:S,tests,,}
950.endif
951
952MTREE_MAGIC?=	mtree 2.0
953
954distributeworld installworld stageworld: _installcheck_world .PHONY
955	mkdir -p ${INSTALLTMP}
956	progs=$$(for prog in ${ITOOLS}; do \
957		if progpath=`which $$prog`; then \
958			echo $$progpath; \
959		else \
960			echo "Required tool $$prog not found in PATH." >&2; \
961			exit 1; \
962		fi; \
963	    done); \
964	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
965	    while read line; do \
966		set -- $$line; \
967		if [ "$$2 $$3" != "not found" ]; then \
968			echo $$2; \
969		else \
970			echo "Required library $$1 not found." >&2; \
971			exit 1; \
972		fi; \
973	    done); \
974	cp $$libs $$progs ${INSTALLTMP}
975	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
976.if defined(NO_ROOT)
977	-mkdir -p ${METALOG:H}
978	echo "#${MTREE_MAGIC}" > ${METALOG}
979.endif
980.if make(distributeworld)
981.for dist in ${EXTRA_DISTRIBUTIONS}
982	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
983	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
984	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
985	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
986	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
987	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
988	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
989.if ${MK_DEBUG_FILES} != "no"
990	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
991	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
992.endif
993.if defined(LIBCOMPAT)
994	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
995	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
996.if ${MK_DEBUG_FILES} != "no"
997	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
998	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null
999.endif
1000.endif
1001.if ${MK_TESTS} != "no" && ${dist} == "tests"
1002	-mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
1003	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1004	    -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
1005.if ${MK_DEBUG_FILES} != "no"
1006	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1007	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null
1008.endif
1009.endif
1010.if defined(NO_ROOT)
1011	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
1012	    sed -e 's#^\./#./${dist}/#' >> ${METALOG}
1013	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
1014	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1015	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
1016	    sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
1017.if defined(LIBCOMPAT)
1018	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \
1019	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1020.endif
1021.endif
1022.endfor
1023	-mkdir ${DESTDIR}/${DISTDIR}/base
1024	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1025	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
1026	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
1027	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
1028.endif
1029	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
1030	    ${IMAKEENV} rm -rf ${INSTALLTMP}
1031.if make(distributeworld)
1032.for dist in ${EXTRA_DISTRIBUTIONS}
1033	find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete
1034.endfor
1035.if defined(NO_ROOT)
1036.for dist in base ${EXTRA_DISTRIBUTIONS}
1037	@# For each file that exists in this dist, print the corresponding
1038	@# line from the METALOG.  This relies on the fact that
1039	@# a line containing only the filename will sort immediately before
1040	@# the relevant mtree line.
1041	cd ${DESTDIR}/${DISTDIR}; \
1042	find ./${dist} | sort -u ${METALOG} - | \
1043	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1044	${DESTDIR}/${DISTDIR}/${dist}.meta
1045.endfor
1046.for dist in ${DEBUG_DISTRIBUTIONS}
1047	@# For each file that exists in this dist, print the corresponding
1048	@# line from the METALOG.  This relies on the fact that
1049	@# a line containing only the filename will sort immediately before
1050	@# the relevant mtree line.
1051	cd ${DESTDIR}/${DISTDIR}; \
1052	find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
1053	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1054	${DESTDIR}/${DISTDIR}/${dist}.debug.meta
1055.endfor
1056.endif
1057.endif
1058
1059packageworld: .PHONY
1060.for dist in base ${EXTRA_DISTRIBUTIONS}
1061.if defined(NO_ROOT)
1062	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1063	    tar cvf - --exclude usr/lib/debug \
1064	    @${DESTDIR}/${DISTDIR}/${dist}.meta | \
1065	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1066.else
1067	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1068	    tar cvf - --exclude usr/lib/debug . | \
1069	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1070.endif
1071.endfor
1072
1073.for dist in ${DEBUG_DISTRIBUTIONS}
1074. if defined(NO_ROOT)
1075	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1076	    tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
1077	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1078. else
1079	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1080	    tar cvLf - usr/lib/debug | \
1081	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1082. endif
1083.endfor
1084
1085#
1086# reinstall
1087#
1088# If you have a build server, you can NFS mount the source and obj directories
1089# and do a 'make reinstall' on the *client* to install new binaries from the
1090# most recent server build.
1091#
1092restage reinstall: .MAKE .PHONY
1093	@echo "--------------------------------------------------------------"
1094	@echo ">>> Making hierarchy"
1095	@echo "--------------------------------------------------------------"
1096	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1097	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
1098.if make(restage)
1099	@echo "--------------------------------------------------------------"
1100	@echo ">>> Making distribution"
1101	@echo "--------------------------------------------------------------"
1102	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1103	    LOCAL_MTREE=${LOCAL_MTREE:Q} distribution
1104.endif
1105	@echo
1106	@echo "--------------------------------------------------------------"
1107	@echo ">>> Installing everything"
1108	@echo "--------------------------------------------------------------"
1109	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
1110.if defined(LIBCOMPAT)
1111	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
1112.endif
1113
1114redistribute: .MAKE .PHONY
1115	@echo "--------------------------------------------------------------"
1116	@echo ">>> Distributing everything"
1117	@echo "--------------------------------------------------------------"
1118	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
1119.if defined(LIBCOMPAT)
1120	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \
1121	    DISTRIBUTION=lib${libcompat}
1122.endif
1123
1124distrib-dirs distribution: .MAKE .PHONY
1125	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1126	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1127.if make(distribution)
1128	${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1129		${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1130		METALOG=${METALOG} MK_TESTS=no installconfig
1131.endif
1132
1133#
1134# buildkernel and installkernel
1135#
1136# Which kernels to build and/or install is specified by setting
1137# KERNCONF. If not defined a GENERIC kernel is built/installed.
1138# Only the existing (depending TARGET) config files are used
1139# for building kernels and only the first of these is designated
1140# as the one being installed.
1141#
1142# Note that we have to use TARGET instead of TARGET_ARCH when
1143# we're in kernel-land. Since only TARGET_ARCH is (expected) to
1144# be set to cross-build, we have to make sure TARGET is set
1145# properly.
1146
1147.if defined(KERNFAST)
1148NO_KERNELCLEAN=	t
1149NO_KERNELCONFIG=	t
1150NO_KERNELOBJ=		t
1151# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1152.if !defined(KERNCONF) && ${KERNFAST} != "1"
1153KERNCONF=${KERNFAST}
1154.endif
1155.endif
1156.if ${TARGET_ARCH} == "powerpc64"
1157KERNCONF?=	GENERIC64
1158.else
1159KERNCONF?=	GENERIC
1160.endif
1161INSTKERNNAME?=	kernel
1162
1163KERNSRCDIR?=	${.CURDIR}/sys
1164KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
1165KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
1166KERNCONFDIR?=	${KRNLCONFDIR}
1167
1168BUILDKERNELS=
1169INSTALLKERNEL=
1170.if defined(NO_INSTALLKERNEL)
1171# All of the BUILDKERNELS loops start at index 1.
1172BUILDKERNELS+= dummy
1173.endif
1174.for _kernel in ${KERNCONF}
1175.if exists(${KERNCONFDIR}/${_kernel})
1176BUILDKERNELS+=	${_kernel}
1177.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1178INSTALLKERNEL= ${_kernel}
1179.endif
1180.endif
1181.endfor
1182
1183${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1184
1185#
1186# buildkernel
1187#
1188# Builds all kernels defined by BUILDKERNELS.
1189#
1190buildkernel: .MAKE .PHONY
1191.if empty(BUILDKERNELS:Ndummy)
1192	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1193	false
1194.endif
1195	@echo
1196.for _kernel in ${BUILDKERNELS:Ndummy}
1197	@echo "--------------------------------------------------------------"
1198	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1199	@echo "--------------------------------------------------------------"
1200	@echo "===> ${_kernel}"
1201	mkdir -p ${KRNLOBJDIR}
1202.if !defined(NO_KERNELCONFIG)
1203	@echo
1204	@echo "--------------------------------------------------------------"
1205	@echo ">>> stage 1: configuring the kernel"
1206	@echo "--------------------------------------------------------------"
1207	cd ${KRNLCONFDIR}; \
1208		PATH=${TMPPATH} \
1209		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1210			-I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1211.endif
1212.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1213	@echo
1214	@echo "--------------------------------------------------------------"
1215	@echo ">>> stage 2.1: cleaning up the object tree"
1216	@echo "--------------------------------------------------------------"
1217	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1218.endif
1219.if !defined(NO_KERNELOBJ)
1220	@echo
1221	@echo "--------------------------------------------------------------"
1222	@echo ">>> stage 2.2: rebuilding the object tree"
1223	@echo "--------------------------------------------------------------"
1224	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1225.endif
1226	@echo
1227	@echo "--------------------------------------------------------------"
1228	@echo ">>> stage 2.3: build tools"
1229	@echo "--------------------------------------------------------------"
1230	${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1231	@echo
1232	@echo "--------------------------------------------------------------"
1233	@echo ">>> stage 3.1: building everything"
1234	@echo "--------------------------------------------------------------"
1235	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1236	@echo "--------------------------------------------------------------"
1237	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1238	@echo "--------------------------------------------------------------"
1239.endfor
1240
1241NO_INSTALLEXTRAKERNELS?=	yes
1242
1243#
1244# installkernel, etc.
1245#
1246# Install the kernel defined by INSTALLKERNEL
1247#
1248installkernel installkernel.debug \
1249reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY
1250.if !defined(NO_INSTALLKERNEL)
1251.if empty(INSTALLKERNEL)
1252	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1253	false
1254.endif
1255	@echo "--------------------------------------------------------------"
1256	@echo ">>> Installing kernel ${INSTALLKERNEL}"
1257	@echo "--------------------------------------------------------------"
1258	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1259	    ${CROSSENV} PATH=${TMPPATH} \
1260	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1261.endif
1262.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1263.for _kernel in ${BUILDKERNELS:[2..-1]}
1264	@echo "--------------------------------------------------------------"
1265	@echo ">>> Installing kernel ${_kernel}"
1266	@echo "--------------------------------------------------------------"
1267	cd ${KRNLOBJDIR}/${_kernel}; \
1268	    ${CROSSENV} PATH=${TMPPATH} \
1269	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1270.endfor
1271.endif
1272
1273distributekernel distributekernel.debug: .PHONY
1274.if !defined(NO_INSTALLKERNEL)
1275.if empty(INSTALLKERNEL)
1276	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1277	false
1278.endif
1279	mkdir -p ${DESTDIR}/${DISTDIR}
1280.if defined(NO_ROOT)
1281	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1282.endif
1283	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1284	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1285	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1286	    DESTDIR=${INSTALL_DDIR}/kernel \
1287	    ${.TARGET:S/distributekernel/install/}
1288.if defined(NO_ROOT)
1289	@sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1290	    ${DESTDIR}/${DISTDIR}/kernel.meta
1291.endif
1292.endif
1293.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1294.for _kernel in ${BUILDKERNELS:[2..-1]}
1295.if defined(NO_ROOT)
1296	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1297.endif
1298	cd ${KRNLOBJDIR}/${_kernel}; \
1299	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1300	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1301	    KERNEL=${INSTKERNNAME}.${_kernel} \
1302	    DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1303	    ${.TARGET:S/distributekernel/install/}
1304.if defined(NO_ROOT)
1305	@sed -e "s|^./kernel.${_kernel}|.|" \
1306	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1307	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1308.endif
1309.endfor
1310.endif
1311
1312packagekernel: .PHONY
1313.if defined(NO_ROOT)
1314.if !defined(NO_INSTALLKERNEL)
1315	cd ${DESTDIR}/${DISTDIR}/kernel; \
1316	    tar cvf - --exclude '*.debug' \
1317	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1318	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1319.endif
1320	cd ${DESTDIR}/${DISTDIR}/kernel; \
1321	    tar cvf - --include '*/*/*.debug' \
1322	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1323	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1324.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1325.for _kernel in ${BUILDKERNELS:[2..-1]}
1326	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1327	    tar cvf - --exclude '*.debug' \
1328	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1329	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1330	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1331	    tar cvf - --include '*/*/*.debug' \
1332	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1333	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1334.endfor
1335.endif
1336.else
1337.if !defined(NO_INSTALLKERNEL)
1338	cd ${DESTDIR}/${DISTDIR}/kernel; \
1339	    tar cvf - --exclude '*.debug' . | \
1340	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1341.endif
1342	cd ${DESTDIR}/${DISTDIR}/kernel; \
1343	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1344	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1345.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1346.for _kernel in ${BUILDKERNELS:[2..-1]}
1347	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1348	    tar cvf - --exclude '*.debug' . | \
1349	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1350	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1351	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1352	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1353.endfor
1354.endif
1355.endif
1356
1357stagekernel: .PHONY
1358	${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel
1359
1360PORTSDIR?=	/usr/ports
1361WSTAGEDIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/${TARGET}.${TARGET_ARCH}/worldstage
1362KSTAGEDIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/${TARGET}.${TARGET_ARCH}/kernelstage
1363REPODIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/repo
1364PKGSIGNKEY?=	# empty
1365
1366.ORDER:		stage-packages create-packages
1367.ORDER:		create-packages create-world-packages
1368.ORDER:		create-packages create-kernel-packages
1369.ORDER:		create-packages sign-packages
1370
1371_pkgbootstrap: .PHONY
1372.if !exists(${LOCALBASE}/sbin/pkg)
1373	@env ASSUME_ALWAYS_YES=YES pkg bootstrap
1374.endif
1375
1376packages: .PHONY
1377	${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} real-packages
1378
1379package-pkg: .PHONY
1380	rm -rf /tmp/ports.${TARGET} || :
1381	env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \
1382		PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} WSTAGEDIR=${WSTAGEDIR} \
1383		sh ${.CURDIR}/release/scripts/make-pkg-package.sh
1384
1385real-packages:	stage-packages create-packages sign-packages .PHONY
1386
1387stage-packages: .PHONY
1388	@mkdir -p ${REPODIR} ${WSTAGEDIR} ${KSTAGEDIR}
1389	${_+_}@cd ${.CURDIR}; \
1390		${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT -B stageworld ; \
1391		${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT -B stagekernel
1392
1393create-packages:	_pkgbootstrap .PHONY
1394	@mkdir -p ${REPODIR}
1395	${_+_}@cd ${.CURDIR}; \
1396		${MAKE} DESTDIR=${WSTAGEDIR} \
1397			PKG_VERSION=${PKG_VERSION} create-world-packages ; \
1398		${MAKE} DESTDIR=${KSTAGEDIR} \
1399			PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \
1400			create-kernel-packages
1401
1402create-world-packages:	_pkgbootstrap .PHONY
1403	@rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || :
1404	@cd ${WSTAGEDIR} ; \
1405		awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1406		${WSTAGEDIR}/METALOG
1407	@for plist in ${WSTAGEDIR}/*.plist; do \
1408		plist=$${plist##*/} ; \
1409		pkgname=$${plist%.plist} ; \
1410		sh ${SRCDIR}/release/packages/generate-ucl.sh -o $${pkgname} \
1411			-s ${SRCDIR} -u ${WSTAGEDIR}/$${pkgname}.ucl ; \
1412	done
1413	@for plist in ${WSTAGEDIR}/*.plist; do \
1414		plist=$${plist##*/} ; \
1415		pkgname=$${plist%.plist} ; \
1416		awk -F\" ' \
1417			/^name/ { printf("===> Creating %s-", $$2); next } \
1418			/^version/ { print $$2; next } \
1419			' ${WSTAGEDIR}/$${pkgname}.ucl ; \
1420		pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1421			create -M ${WSTAGEDIR}/$${pkgname}.ucl \
1422			-p ${WSTAGEDIR}/$${pkgname}.plist \
1423			-r ${WSTAGEDIR} \
1424			-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} ; \
1425	done
1426
1427create-kernel-packages:	_pkgbootstrap .PHONY
1428.if exists(${KSTAGEDIR}/kernel.meta)
1429.for flavor in "" -debug
1430	@cd ${KSTAGEDIR}/${DISTDIR} ; \
1431	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1432		-v kernel=yes -v _kernconf=${INSTALLKERNEL} \
1433		${KSTAGEDIR}/kernel.meta ; \
1434	cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1435	pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1436	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1437		-e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \
1438		-e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1439		-e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1440		-e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1441		-e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1442		${SRCDIR}/release/packages/kernel.ucl \
1443		> ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1444	awk -F\" ' \
1445		/name/ { printf("===> Creating %s-", $$2); next } \
1446		/version/ {print $$2; next } ' \
1447		${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1448	pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1449		create -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \
1450		-p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \
1451		-r ${KSTAGEDIR}/${DISTDIR} \
1452		-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION}
1453.endfor
1454.endif
1455.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1456.for _kernel in ${BUILDKERNELS:[2..-1]}
1457.if exists(${KSTAGEDIR}/kernel.${_kernel}.meta)
1458.for flavor in "" -debug
1459	@cd ${KSTAGEDIR}/kernel.${_kernel} ; \
1460	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1461		-v kernel=yes -v _kernconf=${_kernel} \
1462		${KSTAGEDIR}/kernel.${_kernel}.meta ; \
1463	cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1464	pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1465	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1466		-e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \
1467		-e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \
1468		-e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \
1469		-e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1470		-e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1471		${SRCDIR}/release/packages/kernel.ucl \
1472		> ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
1473	awk -F\" ' \
1474		/name/ { printf("===> Creating %s-", $$2); next } \
1475		/version/ {print $$2; next } ' \
1476		${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
1477	pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1478		create -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \
1479		-p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \
1480		-r ${KSTAGEDIR}/kernel.${_kernel} \
1481		-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION}
1482.endfor
1483.endif
1484.endfor
1485.endif
1486
1487sign-packages:	_pkgbootstrap .PHONY
1488	@[ -L "${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest" ] && \
1489		unlink ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest ; \
1490	pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh repo \
1491		-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1492		${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1493		${PKGSIGNKEY} ; \
1494	ln -s ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1495		${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest
1496
1497#
1498#
1499# checkworld
1500#
1501# Run test suite on installed world.
1502#
1503checkworld: .PHONY
1504	@if [ ! -x ${LOCALBASE}/bin/kyua ]; then \
1505		echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
1506		exit 1; \
1507	fi
1508	${_+_}${LOCALBASE}/bin/kyua test -k ${TESTSBASE}/Kyuafile
1509
1510#
1511#
1512# doxygen
1513#
1514# Build the API documentation with doxygen
1515#
1516doxygen: .PHONY
1517	@if [ ! -x ${LOCALBASE}/bin/doxygen ]; then \
1518		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1519		exit 1; \
1520	fi
1521	${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1522
1523#
1524# update
1525#
1526# Update the source tree(s), by running svn/svnup to update to the
1527# latest copy.
1528#
1529update: .PHONY
1530.if defined(SVN_UPDATE)
1531	@echo "--------------------------------------------------------------"
1532	@echo ">>> Updating ${.CURDIR} using Subversion"
1533	@echo "--------------------------------------------------------------"
1534	@(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
1535.endif
1536
1537#
1538# ------------------------------------------------------------------------
1539#
1540# From here onwards are utility targets used by the 'make world' and
1541# related targets.  If your 'world' breaks, you may like to try to fix
1542# the problem and manually run the following targets to attempt to
1543# complete the build.  Beware, this is *not* guaranteed to work, you
1544# need to have a pretty good grip on the current state of the system
1545# to attempt to manually finish it.  If in doubt, 'make world' again.
1546#
1547
1548#
1549# legacy: Build compatibility shims for the next three targets. This is a
1550# minimal set of tools and shims necessary to compensate for older systems
1551# which don't have the APIs required by the targets built in bootstrap-tools,
1552# build-tools or cross-tools.
1553#
1554
1555# ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
1556# r296685 fix cross-endian objcopy
1557.if ${BOOTSTRAPPING} < 1100102
1558_elftoolchain_libs= lib/libelf lib/libdwarf
1559.endif
1560
1561legacy: .PHONY
1562# Temporary special case for automatically detecting the clang compiler issue
1563# Note: 9.x didn't have FreeBSD_version bumps often enough, so you may need to
1564# set BOOTSTRAPPING to 0 if you're stable/9 tree post-dates r286035 but is before
1565# the version bump in r296219 (from July 29, 2015 -> Feb 29, 2016).
1566.if ${BOOTSTRAPPING} != 0 && \
1567	${WANT_COMPILER_TYPE} == "clang" && ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} < 30601
1568.if   ${BOOTSTRAPPING} > 10000000 && ${BOOTSTRAPPING} < 1002501
1569	@echo "ERROR: Source upgrades from stable/10 prior to r286033 are not supported."; false
1570.elif ${BOOTSTRAPPING} >  9000000 && ${BOOTSTRAPPING} <  903509
1571	@echo "ERROR: Source upgrades from stable/9 prior to r286035 are not supported."; false
1572.endif
1573.endif
1574.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0
1575	@echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \
1576	false
1577.endif
1578
1579.for _tool in tools/build ${_elftoolchain_libs}
1580	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \
1581	    cd ${.CURDIR}/${_tool}; \
1582	    ${MAKE} DIRPRFX=${_tool}/ obj; \
1583	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1584	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \
1585	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \
1586	        DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1587.endfor
1588
1589#
1590# bootstrap-tools: Build tools needed for compatibility. These are binaries that
1591# are built to build other binaries in the system. However, the focus of these
1592# binaries is usually quite narrow. Bootstrap tools use the host's compiler and
1593# libraries, augmented by -legacy.
1594#
1595_bt=		_bootstrap-tools
1596
1597.if ${MK_GAMES} != "no"
1598_strfile=	usr.bin/fortune/strfile
1599.endif
1600
1601.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1602_gperf=		gnu/usr.bin/gperf
1603.endif
1604
1605.if ${MK_SHAREDOCS} != "no" && ${MK_GROFF} != "no"
1606_groff=		gnu/usr.bin/groff \
1607		usr.bin/soelim
1608.endif
1609
1610.if ${MK_VT} != "no"
1611_vtfontcvt=	usr.bin/vtfontcvt
1612.endif
1613
1614.if ${BOOTSTRAPPING} < 1000033
1615_libopenbsd=	lib/libopenbsd
1616_m4=		usr.bin/m4
1617_lex=		usr.bin/lex
1618
1619${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd
1620${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1621.endif
1622
1623.if ${BOOTSTRAPPING} < 1000026
1624_nmtree=	lib/libnetbsd \
1625		usr.sbin/nmtree
1626
1627${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1628.endif
1629
1630.if ${BOOTSTRAPPING} < 1000027
1631_cat=		bin/cat
1632.endif
1633
1634# r264059 support for status=
1635.if ${BOOTSTRAPPING} < 1100017
1636_dd=		bin/dd
1637.endif
1638
1639# r277259 crunchide: Correct 64-bit section header offset
1640# r281674 crunchide: always include both 32- and 64-bit ELF support
1641.if ${BOOTSTRAPPING} < 1100078
1642_crunchide=	usr.sbin/crunch/crunchide
1643.endif
1644
1645# r285986 crunchen: use STRIPBIN rather than STRIP
1646# 1100113: Support MK_AUTO_OBJ
1647# 1200006: META_MODE fixes
1648.if ${BOOTSTRAPPING} < 1100078 || \
1649    (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114) || \
1650    (${MK_META_MODE} == "yes" && ${BOOTSTRAPPING} < 1200006)
1651_crunchgen=	usr.sbin/crunch/crunchgen
1652.endif
1653
1654# r296926 -P keymap search path, MFC to stable/10 in r298297
1655.if ${BOOTSTRAPPING} < 1003501 || \
1656	(${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103)
1657_kbdcontrol=	usr.sbin/kbdcontrol
1658.endif
1659
1660_yacc=		lib/liby \
1661		usr.bin/yacc
1662
1663${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1664
1665.if ${MK_BSNMP} != "no"
1666_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1667.endif
1668
1669# We need to build tblgen when we're building clang either as
1670# the bootstrap compiler, or as the part of the normal build.
1671.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no"
1672_clang_tblgen= \
1673	lib/clang/libllvmsupport \
1674	lib/clang/libllvmtablegen \
1675	usr.bin/clang/llvm-tblgen \
1676	usr.bin/clang/clang-tblgen
1677
1678${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1679${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1680.endif
1681
1682# Default to building the GPL DTC, but build the BSDL one if users explicitly
1683# request it.
1684_dtc= usr.bin/dtc
1685.if ${MK_GPL_DTC} != "no"
1686_dtc= gnu/usr.bin/dtc
1687.endif
1688
1689.if ${MK_KERBEROS} != "no"
1690_kerberos5_bootstrap_tools= \
1691	kerberos5/tools/make-roken \
1692	kerberos5/lib/libroken \
1693	kerberos5/lib/libvers \
1694	kerberos5/tools/asn1_compile \
1695	kerberos5/tools/slc \
1696	usr.bin/compile_et
1697
1698.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1699.endif
1700
1701# r283777 makewhatis(1) replaced with mandoc version which builds a database.
1702.if ${MK_MANDOCDB} != "no" && ${BOOTSTRAPPING} < 1100075
1703_libopenbsd?=	lib/libopenbsd
1704_makewhatis=	lib/libsqlite3 \
1705		usr.bin/mandoc
1706${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd ${_bt}-lib/libsqlite3
1707.endif
1708
1709bootstrap-tools: .PHONY
1710
1711#	Please document (add comment) why something is in 'bootstrap-tools'.
1712#	Try to bound the building of the bootstrap-tool to just the
1713#	FreeBSD versions that need the tool built at this stage of the build.
1714.for _tool in \
1715    ${_clang_tblgen} \
1716    ${_kerberos5_bootstrap_tools} \
1717    ${_strfile} \
1718    ${_gperf} \
1719    ${_groff} \
1720    ${_dtc} \
1721    ${_cat} \
1722    ${_dd} \
1723    ${_kbdcontrol} \
1724    usr.bin/lorder \
1725    ${_libopenbsd} \
1726    ${_makewhatis} \
1727    usr.bin/rpcgen \
1728    ${_yacc} \
1729    ${_m4} \
1730    ${_lex} \
1731    usr.bin/xinstall \
1732    ${_gensnmptree} \
1733    usr.sbin/config \
1734    ${_crunchide} \
1735    ${_crunchgen} \
1736    ${_nmtree} \
1737    ${_vtfontcvt} \
1738    usr.bin/localedef
1739${_bt}-${_tool}: .PHONY .MAKE
1740	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1741		cd ${.CURDIR}/${_tool}; \
1742		${MAKE} DIRPRFX=${_tool}/ obj; \
1743		${MAKE} DIRPRFX=${_tool}/ all; \
1744		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1745
1746bootstrap-tools: ${_bt}-${_tool}
1747.endfor
1748
1749#
1750# build-tools: Build special purpose build tools
1751#
1752.if !defined(NO_SHARE)
1753_share=	share/syscons/scrnmaps
1754.endif
1755
1756.if ${MK_GCC} != "no"
1757_gcc_tools= gnu/usr.bin/cc/cc_tools
1758.endif
1759
1760.if ${MK_RESCUE} != "no"
1761# rescue includes programs that have build-tools targets
1762_rescue=rescue/rescue
1763.endif
1764
1765.for _tool in \
1766    bin/csh \
1767    bin/sh \
1768    ${LOCAL_TOOL_DIRS} \
1769    lib/ncurses/ncurses \
1770    lib/ncurses/ncursesw \
1771    ${_rescue} \
1772    ${_share} \
1773    usr.bin/awk \
1774    lib/libmagic \
1775    usr.bin/mkesdb_static \
1776    usr.bin/mkcsmapper_static \
1777    usr.bin/vi/catalog
1778build-tools_${_tool}: .PHONY
1779	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1780		cd ${.CURDIR}/${_tool}; \
1781		${MAKE} DIRPRFX=${_tool}/ obj; \
1782		${MAKE} DIRPRFX=${_tool}/ build-tools
1783build-tools: build-tools_${_tool}
1784.endfor
1785.for _tool in \
1786    ${_gcc_tools}
1787build-tools_${_tool}: .PHONY
1788	${_+_}@${ECHODIR} "===> ${_tool} (obj,all)"; \
1789		cd ${.CURDIR}/${_tool}; \
1790		${MAKE} DIRPRFX=${_tool}/ obj; \
1791		${MAKE} DIRPRFX=${_tool}/ all
1792build-tools: build-tools_${_tool}
1793.endfor
1794
1795#
1796# kernel-tools: Build kernel-building tools
1797#
1798kernel-tools: .PHONY
1799	mkdir -p ${MAKEOBJDIRPREFIX}/usr
1800	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1801	    -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1802
1803#
1804# cross-tools: All the tools needed to build the rest of the system after
1805# we get done with the earlier stages. It is the last set of tools needed
1806# to begin building the target binaries.
1807#
1808.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1809.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1810_btxld=		usr.sbin/btxld
1811.endif
1812.endif
1813
1814# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
1815# resulting from missing bug fixes or ELF Toolchain updates.
1816.if ${MK_CDDL} != "no"
1817_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
1818    cddl/usr.bin/ctfmerge
1819.endif
1820
1821# If we're given an XAS, don't build binutils.
1822.if ${XAS:M/*} == ""
1823.if ${MK_BINUTILS_BOOTSTRAP} != "no"
1824_binutils=	gnu/usr.bin/binutils
1825.endif
1826.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1827_elftctools=	lib/libelftc \
1828		lib/libpe \
1829		usr.bin/elfcopy \
1830		usr.bin/nm \
1831		usr.bin/size \
1832		usr.bin/strings
1833# These are not required by the build, but can be useful for developers who
1834# cross-build on a FreeBSD 10 host:
1835_elftctools+=	usr.bin/addr2line
1836.endif
1837.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1838# If cross-building with an external binutils we still need to build strip for
1839# the target (for at least crunchide).
1840_elftctools=	lib/libelftc \
1841		lib/libpe \
1842		usr.bin/elfcopy
1843.endif
1844
1845.if ${MK_CLANG_BOOTSTRAP} != "no"
1846_clang=		usr.bin/clang
1847_clang_libs=	lib/clang
1848.endif
1849.if ${MK_GCC_BOOTSTRAP} != "no"
1850_cc=		gnu/usr.bin/cc
1851.endif
1852.if ${MK_USB} != "no"
1853_usb_tools=	sys/boot/usb/tools
1854.endif
1855
1856cross-tools: .MAKE .PHONY
1857.for _tool in \
1858    ${LOCAL_XTOOL_DIRS} \
1859    ${_clang_libs} \
1860    ${_clang} \
1861    ${_binutils} \
1862    ${_elftctools} \
1863    ${_dtrace_tools} \
1864    ${_cc} \
1865    ${_btxld} \
1866    ${_usb_tools}
1867	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1868		cd ${.CURDIR}/${_tool}; \
1869		${MAKE} DIRPRFX=${_tool}/ obj; \
1870		${MAKE} DIRPRFX=${_tool}/ all; \
1871		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1872.endfor
1873
1874NXBDESTDIR=	${OBJTREE}/nxb-bin
1875NXBENV=		MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1876		INSTALL="sh ${.CURDIR}/tools/install.sh" \
1877		PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
1878NXBMAKE=	${NXBENV} ${MAKE} \
1879		LLVM_TBLGEN=${NXBDESTDIR}/usr/bin/llvm-tblgen \
1880		CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \
1881		MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1882		MK_GDB=no MK_TESTS=no \
1883		SSP_CFLAGS= \
1884		MK_HTML=no NO_LINT=yes MK_MAN=no \
1885		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
1886		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
1887		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
1888		MK_LLDB=no MK_DEBUG_FILES=no
1889
1890# native-xtools is the current target for qemu-user cross builds of ports
1891# via poudriere and the imgact_binmisc kernel module.
1892# For non-clang enabled targets that are still using the in tree gcc
1893# we must build a gperf binary for one instance of its Makefiles.  On
1894# clang-enabled systems, the gperf binary is obsolete.
1895native-xtools: .PHONY
1896.if ${MK_GCC_BOOTSTRAP} != "no"
1897	mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
1898	${_+_}@${ECHODIR} "===> ${_gperf} (obj,all,install)"; \
1899	cd ${.CURDIR}/${_gperf}; \
1900	${NXBMAKE} DIRPRFX=${_gperf}/ obj; \
1901	${NXBMAKE} DIRPRFX=${_gperf}/ all; \
1902	${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
1903.endif
1904	mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
1905	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1906	    -p ${NXBDESTDIR}/usr >/dev/null
1907	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1908	    -p ${NXBDESTDIR}/usr/include >/dev/null
1909.if ${MK_DEBUG_FILES} != "no"
1910	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1911	    -p ${NXBDESTDIR}/usr/lib >/dev/null
1912.endif
1913.for _tool in \
1914    bin/cat \
1915    bin/chmod \
1916    bin/cp \
1917    bin/csh \
1918    bin/echo \
1919    bin/expr \
1920    bin/hostname \
1921    bin/ln \
1922    bin/ls \
1923    bin/mkdir \
1924    bin/mv \
1925    bin/ps \
1926    bin/realpath \
1927    bin/rm \
1928    bin/rmdir \
1929    bin/sh \
1930    bin/sleep \
1931    ${_clang_tblgen} \
1932    usr.bin/ar \
1933    ${_binutils} \
1934    ${_elftctools} \
1935    ${_cc} \
1936    ${_gcc_tools} \
1937    ${_clang_libs} \
1938    ${_clang} \
1939    sbin/md5 \
1940    sbin/sysctl \
1941    gnu/usr.bin/diff \
1942    usr.bin/awk \
1943    usr.bin/basename \
1944    usr.bin/bmake \
1945    usr.bin/bzip2 \
1946    usr.bin/cmp \
1947    usr.bin/dirname \
1948    usr.bin/env \
1949    usr.bin/fetch \
1950    usr.bin/find \
1951    usr.bin/grep \
1952    usr.bin/gzip \
1953    usr.bin/id \
1954    usr.bin/lex \
1955    usr.bin/limits \
1956    usr.bin/lorder \
1957    usr.bin/mktemp \
1958    usr.bin/mt \
1959    usr.bin/patch \
1960    usr.bin/sed \
1961    usr.bin/sort \
1962    usr.bin/tar \
1963    usr.bin/touch \
1964    usr.bin/tr \
1965    usr.bin/true \
1966    usr.bin/uniq \
1967    usr.bin/unzip \
1968    usr.bin/xargs \
1969    usr.bin/xinstall \
1970    usr.bin/xz \
1971    usr.bin/yacc \
1972    usr.sbin/chown
1973	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1974		cd ${.CURDIR}/${_tool}; \
1975		${NXBMAKE} DIRPRFX=${_tool}/ obj; \
1976		${NXBMAKE} DIRPRFX=${_tool}/ all; \
1977		${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${NXBDESTDIR} install
1978.endfor
1979
1980#
1981# hierarchy - ensure that all the needed directories are present
1982#
1983hierarchy hier: .MAKE .PHONY
1984	${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
1985
1986#
1987# libraries - build all libraries, and install them under ${DESTDIR}.
1988#
1989# The list of libraries with dependents (${_prebuild_libs}) and their
1990# interdependencies (__L) are built automatically by the
1991# ${.CURDIR}/tools/make_libdeps.sh script.
1992#
1993libraries: .MAKE .PHONY
1994	${_+_}cd ${.CURDIR}; \
1995	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
1996	    ${MAKE} -f Makefile.inc1 _startup_libs; \
1997	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1998	    ${MAKE} -f Makefile.inc1 _generic_libs
1999
2000#
2001# static libgcc.a prerequisite for shared libc
2002#
2003_prereq_libs= lib/libcompiler_rt
2004.if ${MK_SSP} != "no"
2005_prereq_libs+= gnu/lib/libssp/libssp_nonshared
2006.endif
2007
2008# These dependencies are not automatically generated:
2009#
2010# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
2011# all shared libraries for ELF.
2012#
2013_startup_libs=	gnu/lib/csu
2014_startup_libs+=	lib/csu
2015_startup_libs+=	lib/libcompiler_rt
2016_startup_libs+=	lib/libc
2017_startup_libs+=	lib/libc_nonshared
2018.if ${MK_LIBCPLUSPLUS} != "no"
2019_startup_libs+=	lib/libcxxrt
2020.endif
2021
2022.if ${MK_LLVM_LIBUNWIND} != "no"
2023_prereq_libs+=	lib/libgcc_eh lib/libgcc_s
2024_startup_libs+=	lib/libgcc_eh lib/libgcc_s
2025
2026lib/libgcc_s__L: lib/libc__L
2027lib/libgcc_s__L: lib/libc_nonshared__L
2028.if ${MK_LIBCPLUSPLUS} != "no"
2029lib/libcxxrt__L: lib/libgcc_s__L
2030.endif
2031
2032.else # MK_LLVM_LIBUNWIND == no
2033
2034_prereq_libs+=	gnu/lib/libgcc
2035_startup_libs+=	gnu/lib/libgcc
2036
2037gnu/lib/libgcc__L: lib/libc__L
2038gnu/lib/libgcc__L: lib/libc_nonshared__L
2039.if ${MK_LIBCPLUSPLUS} != "no"
2040lib/libcxxrt__L: gnu/lib/libgcc__L
2041.endif
2042.endif
2043
2044_prebuild_libs=	${_kerberos5_lib_libasn1} \
2045		${_kerberos5_lib_libhdb} \
2046		${_kerberos5_lib_libheimbase} \
2047		${_kerberos5_lib_libheimntlm} \
2048		${_libsqlite3} \
2049		${_kerberos5_lib_libheimipcc} \
2050		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
2051		${_kerberos5_lib_libroken} \
2052		${_kerberos5_lib_libwind} \
2053		lib/libbz2 ${_libcom_err} lib/libcrypt \
2054		lib/libelf lib/libexpat \
2055		lib/libfigpar \
2056		${_lib_libgssapi} \
2057		lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
2058		${_lib_casper} \
2059		lib/ncurses/ncurses lib/ncurses/ncursesw \
2060		lib/libopie lib/libpam/libpam ${_lib_libthr} \
2061		${_lib_libradius} lib/libsbuf lib/libtacplus \
2062		lib/libgeom \
2063		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
2064		${_cddl_lib_libuutil} \
2065		${_cddl_lib_libavl} \
2066		${_cddl_lib_libzfs_core} \
2067		${_cddl_lib_libctf} \
2068		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
2069		${_secure_lib_libcrypto} ${_lib_libldns} \
2070		${_secure_lib_libssh} ${_secure_lib_libssl}
2071
2072.if ${MK_GNUCXX} != "no"
2073_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
2074gnu/lib/libstdc++__L: lib/msun__L
2075gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
2076.endif
2077
2078.if ${MK_DIALOG} != "no"
2079_prebuild_libs+= gnu/lib/libdialog
2080gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
2081.endif
2082
2083.if ${MK_LIBCPLUSPLUS} != "no"
2084_prebuild_libs+= lib/libc++
2085.endif
2086
2087lib/libgeom__L: lib/libexpat__L
2088lib/libkvm__L: lib/libelf__L
2089
2090.if ${MK_LIBTHR} != "no"
2091_lib_libthr=	lib/libthr
2092.endif
2093
2094.if ${MK_RADIUS_SUPPORT} != "no"
2095_lib_libradius=	lib/libradius
2096.endif
2097
2098.if ${MK_OFED} != "no"
2099_ofed_lib=		contrib/ofed/usr.lib
2100_prebuild_libs+=	contrib/ofed/usr.lib/libosmcomp
2101_prebuild_libs+=	contrib/ofed/usr.lib/libopensm
2102_prebuild_libs+=	contrib/ofed/usr.lib/libibcommon
2103_prebuild_libs+=	contrib/ofed/usr.lib/libibverbs
2104_prebuild_libs+=	contrib/ofed/usr.lib/libibumad
2105
2106contrib/ofed/usr.lib/libopensm__L: lib/libthr__L
2107contrib/ofed/usr.lib/libosmcomp__L: lib/libthr__L
2108contrib/ofed/usr.lib/libibumad__L: contrib/ofed/usr.lib/libibcommon__L
2109.endif
2110
2111.if ${MK_CASPER} != "no"
2112_lib_casper=	lib/libcasper
2113.endif
2114
2115lib/libpjdlog__L: lib/libutil__L
2116lib/libcasper__L: lib/libnv__L
2117lib/liblzma__L: lib/libthr__L
2118
2119_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
2120.for _DIR in ${LOCAL_LIB_DIRS}
2121.if exists(${.CURDIR}/${_DIR}/Makefile) && empty(_generic_libs:M${_DIR})
2122_generic_libs+= ${_DIR}
2123.endif
2124.endfor
2125
2126lib/libopie__L lib/libtacplus__L: lib/libmd__L
2127
2128.if ${MK_CDDL} != "no"
2129_cddl_lib_libumem= cddl/lib/libumem
2130_cddl_lib_libnvpair= cddl/lib/libnvpair
2131_cddl_lib_libavl= cddl/lib/libavl
2132_cddl_lib_libuutil= cddl/lib/libuutil
2133_cddl_lib_libzfs_core= cddl/lib/libzfs_core
2134_cddl_lib_libctf= cddl/lib/libctf
2135_cddl_lib= cddl/lib
2136cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
2137cddl/lib/libzfs__L: lib/libgeom__L
2138cddl/lib/libctf__L: lib/libz__L
2139.endif
2140# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
2141# on select architectures though (see cddl/lib/Makefile)
2142.if ${MACHINE_CPUARCH} != "sparc64"
2143_prebuild_libs+=	lib/libprocstat lib/libproc lib/librtld_db
2144lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L
2145lib/libproc__L: lib/libprocstat__L
2146lib/librtld_db__L: lib/libprocstat__L
2147.endif
2148
2149.if ${MK_CRYPT} != "no"
2150.if ${MK_OPENSSL} != "no"
2151_secure_lib_libcrypto= secure/lib/libcrypto
2152_secure_lib_libssl= secure/lib/libssl
2153lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
2154.if ${MK_LDNS} != "no"
2155_lib_libldns= lib/libldns
2156lib/libldns__L: secure/lib/libcrypto__L
2157.endif
2158.if ${MK_OPENSSH} != "no"
2159_secure_lib_libssh= secure/lib/libssh
2160secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
2161.if ${MK_LDNS} != "no"
2162secure/lib/libssh__L: lib/libldns__L
2163.endif
2164.if ${MK_KERBEROS_SUPPORT} != "no"
2165secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
2166    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
2167    lib/libmd__L kerberos5/lib/libroken__L
2168.endif
2169.endif
2170.endif
2171_secure_lib=	secure/lib
2172.endif
2173
2174.if ${MK_KERBEROS} != "no"
2175kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
2176kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2177    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
2178    kerberos5/lib/libwind__L lib/libsqlite3__L
2179kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
2180    kerberos5/lib/libroken__L lib/libcom_err__L
2181kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2182    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
2183kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2184    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
2185    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
2186    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
2187kerberos5/lib/libroken__L: lib/libcrypt__L
2188kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
2189kerberos5/lib/libheimbase__L: lib/libthr__L
2190kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
2191.endif
2192
2193lib/libsqlite3__L: lib/libthr__L
2194
2195.if ${MK_GSSAPI} != "no"
2196_lib_libgssapi=	lib/libgssapi
2197.endif
2198
2199.if ${MK_KERBEROS} != "no"
2200_kerberos5_lib=	kerberos5/lib
2201_kerberos5_lib_libasn1= kerberos5/lib/libasn1
2202_kerberos5_lib_libhdb= kerberos5/lib/libhdb
2203_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
2204_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
2205_kerberos5_lib_libhx509= kerberos5/lib/libhx509
2206_kerberos5_lib_libroken= kerberos5/lib/libroken
2207_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
2208_libsqlite3= lib/libsqlite3
2209_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
2210_kerberos5_lib_libwind= kerberos5/lib/libwind
2211_libcom_err= lib/libcom_err
2212.endif
2213
2214.if ${MK_NIS} != "no"
2215_lib_libypclnt=	lib/libypclnt
2216.endif
2217
2218.if ${MK_OPENSSL} == "no"
2219lib/libradius__L: lib/libmd__L
2220.endif
2221
2222lib/libproc__L: \
2223    ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
2224.if ${MK_CXX} != "no"
2225.if ${MK_LIBCPLUSPLUS} != "no"
2226lib/libproc__L: lib/libcxxrt__L
2227.else # This implies MK_GNUCXX != "no"; see lib/libproc
2228lib/libproc__L: gnu/lib/libsupc++__L
2229.endif
2230.endif
2231
2232.for _lib in ${_prereq_libs}
2233${_lib}__PL: .PHONY .MAKE
2234.if exists(${.CURDIR}/${_lib})
2235	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2236		cd ${.CURDIR}/${_lib}; \
2237		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2238		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2239		    DIRPRFX=${_lib}/ all; \
2240		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2241		    DIRPRFX=${_lib}/ install
2242.endif
2243.endfor
2244
2245.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
2246${_lib}__L: .PHONY .MAKE
2247.if exists(${.CURDIR}/${_lib})
2248	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2249		cd ${.CURDIR}/${_lib}; \
2250		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2251		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
2252		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
2253.endif
2254.endfor
2255
2256_prereq_libs: ${_prereq_libs:S/$/__PL/}
2257_startup_libs: ${_startup_libs:S/$/__L/}
2258_prebuild_libs: ${_prebuild_libs:S/$/__L/}
2259_generic_libs: ${_generic_libs:S/$/__L/}
2260
2261# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
2262# 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
2263# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
2264# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
2265# parallel.  This is safe for the world stage of buildworld though since it has
2266# already built libraries in a proper order and installed includes into
2267# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
2268# avoid trashing a system if it crashes mid-install.
2269.if !make(all) || defined(_PARALLEL_SUBDIR_OK)
2270SUBDIR_PARALLEL=
2271.endif
2272
2273.include <bsd.subdir.mk>
2274
2275.if make(check-old) || make(check-old-dirs) || \
2276    make(check-old-files) || make(check-old-libs) || \
2277    make(delete-old) || make(delete-old-dirs) || \
2278    make(delete-old-files) || make(delete-old-libs)
2279
2280#
2281# check for / delete old files section
2282#
2283
2284.include "ObsoleteFiles.inc"
2285
2286OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
2287else you can not start such an application. Consult UPDATING for more \
2288information regarding how to cope with the removal/revision bump of a \
2289specific library."
2290
2291.if !defined(BATCH_DELETE_OLD_FILES)
2292RM_I=-i
2293.else
2294RM_I=-v
2295.endif
2296
2297delete-old-files: .PHONY
2298	@echo ">>> Removing old files (only deletes safe to delete libs)"
2299# Ask for every old file if the user really wants to remove it.
2300# It's annoying, but better safe than sorry.
2301# NB: We cannot pass the list of OLD_FILES as a parameter because the
2302# argument list will get too long. Using .for/.endfor make "loops" will make
2303# the Makefile parser segfault.
2304	@exec 3<&0; \
2305	cd ${.CURDIR}; \
2306	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2307	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2308	while read file; do \
2309		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2310			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2311			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2312		fi; \
2313		for ext in debug symbols; do \
2314		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2315		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2316			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2317			      <&3; \
2318		  fi; \
2319		done; \
2320	done
2321# Remove catpages without corresponding manpages.
2322	@exec 3<&0; \
2323	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2324	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2325	while read catpage; do \
2326		read manpage; \
2327		if [ ! -e "$${manpage}" ]; then \
2328			rm ${RM_I} $${catpage} <&3; \
2329	        fi; \
2330	done
2331	@echo ">>> Old files removed"
2332
2333check-old-files: .PHONY
2334	@echo ">>> Checking for old files"
2335	@cd ${.CURDIR}; \
2336	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2337	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2338	while read file; do \
2339		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2340		 	echo "${DESTDIR}/$${file}"; \
2341		fi; \
2342		for ext in debug symbols; do \
2343		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2344			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2345		  fi; \
2346		done; \
2347	done
2348# Check for catpages without corresponding manpages.
2349	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2350	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2351	while read catpage; do \
2352		read manpage; \
2353		if [ ! -e "$${manpage}" ]; then \
2354			echo $${catpage}; \
2355	        fi; \
2356	done
2357
2358delete-old-libs: .PHONY
2359	@echo ">>> Removing old libraries"
2360	@echo "${OLD_LIBS_MESSAGE}" | fmt
2361	@exec 3<&0; \
2362	cd ${.CURDIR}; \
2363	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2364	    -V OLD_LIBS | xargs -n1 | \
2365	while read file; do \
2366		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2367			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2368			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2369		fi; \
2370		for ext in debug symbols; do \
2371		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2372		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2373			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2374			      <&3; \
2375		  fi; \
2376		done; \
2377	done
2378	@echo ">>> Old libraries removed"
2379
2380check-old-libs: .PHONY
2381	@echo ">>> Checking for old libraries"
2382	@cd ${.CURDIR}; \
2383	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2384	    -V OLD_LIBS | xargs -n1 | \
2385	while read file; do \
2386		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2387			echo "${DESTDIR}/$${file}"; \
2388		fi; \
2389		for ext in debug symbols; do \
2390		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2391			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2392		  fi; \
2393		done; \
2394	done
2395
2396delete-old-dirs: .PHONY
2397	@echo ">>> Removing old directories"
2398	@cd ${.CURDIR}; \
2399	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2400	    -V OLD_DIRS | xargs -n1 | sort -r | \
2401	while read dir; do \
2402		if [ -d "${DESTDIR}/$${dir}" ]; then \
2403			rmdir -v "${DESTDIR}/$${dir}" || true; \
2404		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2405			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2406		fi; \
2407	done
2408	@echo ">>> Old directories removed"
2409
2410check-old-dirs: .PHONY
2411	@echo ">>> Checking for old directories"
2412	@cd ${.CURDIR}; \
2413	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2414	    -V OLD_DIRS | xargs -n1 | \
2415	while read dir; do \
2416		if [ -d "${DESTDIR}/$${dir}" ]; then \
2417			echo "${DESTDIR}/$${dir}"; \
2418		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2419			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2420		fi; \
2421	done
2422
2423delete-old: delete-old-files delete-old-dirs .PHONY
2424	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
2425
2426check-old: check-old-files check-old-libs check-old-dirs .PHONY
2427	@echo "To remove old files and directories run '${MAKE_CMD} delete-old'."
2428	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
2429
2430.endif
2431
2432#
2433# showconfig - show build configuration.
2434#
2435showconfig: .PHONY
2436	@(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1; \
2437	  ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1) 2>&1 | grep ^MK_ | sort -u
2438
2439.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2440DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2441
2442.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2443.if exists(${KERNCONFDIR}/${KERNCONF})
2444FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2445	'${KERNCONFDIR}/${KERNCONF}' ; echo
2446.endif
2447.endif
2448
2449.endif
2450
2451.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2452DTBOUTPUTPATH= ${.CURDIR}
2453.endif
2454
2455#
2456# Build 'standalone' Device Tree Blob
2457#
2458builddtb: .PHONY
2459	@PATH=${TMPPATH} MACHINE=${TARGET} \
2460	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2461	    "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2462
2463###############
2464
2465# cleanworld
2466# In the following, the first 'rm' in a series will usually remove all
2467# files and directories.  If it does not, then there are probably some
2468# files with file flags set, so this unsets them and tries the 'rm' a
2469# second time.  There are situations where this target will be cleaning
2470# some directories via more than one method, but that duplication is
2471# needed to correctly handle all the possible situations.  Removing all
2472# files without file flags set in the first 'rm' instance saves time,
2473# because 'chflags' will need to operate on fewer files afterwards.
2474#
2475# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
2476# created by bsd.obj.mk, except that we don't want to .include that file
2477# in this makefile.
2478#
2479BW_CANONICALOBJDIR:=${OBJTREE}${.CURDIR}
2480cleanworld: .PHONY
2481.if exists(${BW_CANONICALOBJDIR}/)
2482	-rm -rf ${BW_CANONICALOBJDIR}/*
2483	-chflags -R 0 ${BW_CANONICALOBJDIR}
2484	rm -rf ${BW_CANONICALOBJDIR}/*
2485.endif
2486.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
2487	#   To be safe in this case, fall back to a 'make cleandir'
2488	${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
2489.endif
2490
2491.if defined(TARGET) && defined(TARGET_ARCH)
2492
2493.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2494XDEV_CPUTYPE?=${CPUTYPE}
2495.else
2496XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2497.endif
2498
2499NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2500	MK_MAN=no MK_NLS=no MK_PROFILE=no \
2501	MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2502	TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2503	CPUTYPE=${XDEV_CPUTYPE}
2504
2505XDDIR=${TARGET_ARCH}-freebsd
2506XDTP?=/usr/${XDDIR}
2507.if ${XDTP:N/*}
2508.error XDTP variable should be an absolute path
2509.endif
2510
2511CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2512	INSTALL="sh ${.CURDIR}/tools/install.sh"
2513CDENV= ${CDBENV} \
2514	TOOLS_PREFIX=${XDTP}
2515CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2516	--sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2517	-B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2518CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2519	CPP="${CPP} ${CD2CFLAGS}" \
2520	MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2521
2522CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2523CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2524CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2525XDDESTDIR=${DESTDIR}/${XDTP}
2526.if !defined(OSREL)
2527OSREL!= uname -r | sed -e 's/[-(].*//'
2528.endif
2529
2530.ORDER: xdev-build xdev-install xdev-links
2531xdev: xdev-build xdev-install .PHONY
2532
2533.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2534xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY
2535
2536_xb-worldtmp: .PHONY
2537	mkdir -p ${CDTMP}/usr
2538	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2539	    -p ${CDTMP}/usr >/dev/null
2540
2541_xb-bootstrap-tools: .PHONY
2542.for _tool in \
2543    ${_clang_tblgen} \
2544    ${_gperf}
2545	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2546	cd ${.CURDIR}/${_tool}; \
2547	${CDMAKE} DIRPRFX=${_tool}/ obj; \
2548	${CDMAKE} DIRPRFX=${_tool}/ all; \
2549	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2550.endfor
2551
2552_xb-build-tools: .PHONY
2553	${_+_}@cd ${.CURDIR}; \
2554	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2555
2556_xb-cross-tools: .PHONY
2557.for _tool in \
2558    ${_binutils} \
2559    ${_elftctools} \
2560    usr.bin/ar \
2561    ${_clang_libs} \
2562    ${_clang} \
2563    ${_cc}
2564	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \
2565	cd ${.CURDIR}/${_tool}; \
2566	${CDMAKE} DIRPRFX=${_tool}/ obj; \
2567	${CDMAKE} DIRPRFX=${_tool}/ all
2568.endfor
2569
2570_xi-mtree: .PHONY
2571	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2572	mkdir -p ${XDDESTDIR}
2573	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2574	    -p ${XDDESTDIR} >/dev/null
2575	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2576	    -p ${XDDESTDIR}/usr >/dev/null
2577	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2578	    -p ${XDDESTDIR}/usr/include >/dev/null
2579.if defined(LIBCOMPAT)
2580	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
2581	    -p ${XDDESTDIR}/usr >/dev/null
2582.endif
2583.if ${MK_TESTS} != "no"
2584	mkdir -p ${XDDESTDIR}${TESTSBASE}
2585	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2586	    -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2587.endif
2588
2589.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2590xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY
2591
2592_xi-cross-tools: .PHONY
2593	@echo "_xi-cross-tools"
2594.for _tool in \
2595    ${_binutils} \
2596    ${_elftctools} \
2597    usr.bin/ar \
2598    ${_clang_libs} \
2599    ${_clang} \
2600    ${_cc}
2601	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2602	cd ${.CURDIR}/${_tool}; \
2603	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2604.endfor
2605
2606_xi-includes: .PHONY
2607	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
2608		DESTDIR=${XDDESTDIR}
2609
2610_xi-libraries: .PHONY
2611	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2612		DESTDIR=${XDDESTDIR}
2613
2614xdev-links: .PHONY
2615	${_+_}cd ${XDDESTDIR}/usr/bin; \
2616	mkdir -p ../../../../usr/bin; \
2617		for i in *; do \
2618			ln -sf ../../${XDTP}/usr/bin/$$i \
2619			    ../../../../usr/bin/${XDDIR}-$$i; \
2620			ln -sf ../../${XDTP}/usr/bin/$$i \
2621			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2622		done
2623.else
2624xdev xdev-build xdev-install xdev-links: .PHONY
2625	@echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2626.endif
2627