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