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