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