Makefile.inc1 revision 289676
1#
2# $FreeBSD: head/Makefile.inc1 289676 2015-10-21 05:33:48Z bdrewery $
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: .PHONY
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: .PHONY
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: .MAKE .PHONY
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} \
725	    ${.TARGET:S/32$//}
726.endif
727
728WMAKE_TGTS=
729.if !defined(SUBDIR_OVERRIDE)
730WMAKE_TGTS+=	_worldtmp _legacy _bootstrap-tools
731.endif
732WMAKE_TGTS+=	_cleanobj _obj _build-tools
733.if !defined(SUBDIR_OVERRIDE)
734WMAKE_TGTS+=	_cross-tools
735.endif
736WMAKE_TGTS+=	_includes _libraries _depend everything
737.if defined(LIB32TMP) && ${MK_LIB32} != "no"
738WMAKE_TGTS+=	build32
739.endif
740
741buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
742.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
743
744buildworld_prologue:
745	@echo "--------------------------------------------------------------"
746	@echo ">>> World build started on `LC_ALL=C date`"
747	@echo "--------------------------------------------------------------"
748
749buildworld_epilogue:
750	@echo
751	@echo "--------------------------------------------------------------"
752	@echo ">>> World build completed on `LC_ALL=C date`"
753	@echo "--------------------------------------------------------------"
754
755#
756# We need to have this as a target because the indirection between Makefile
757# and Makefile.inc1 causes the correct PATH to be used, rather than a
758# modification of the current environment's PATH.  In addition, we need
759# to quote multiword values.
760#
761buildenvvars:
762	@echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@}
763
764.if ${.TARGETS:Mbuildenv}
765.if ${.MAKEFLAGS:M-j}
766.error The buildenv target is incompatible with -j
767.endif
768.endif
769buildenv:
770	@echo Entering world for ${TARGET_ARCH}:${TARGET}
771	@cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true
772
773TOOLCHAIN_TGTS=	${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
774toolchain: ${TOOLCHAIN_TGTS}
775kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
776
777#
778# installcheck
779#
780# Checks to be sure system is ready for installworld/installkernel.
781#
782installcheck: _installcheck_world _installcheck_kernel
783_installcheck_world:
784_installcheck_kernel:
785
786#
787# Require DESTDIR to be set if installing for a different architecture or
788# using the user/group database in the source tree.
789#
790.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
791    defined(DB_FROM_SRC)
792.if !make(distributeworld)
793_installcheck_world: __installcheck_DESTDIR
794_installcheck_kernel: __installcheck_DESTDIR
795__installcheck_DESTDIR:
796.if !defined(DESTDIR) || empty(DESTDIR)
797	@echo "ERROR: Please set DESTDIR!"; \
798	false
799.endif
800.endif
801.endif
802
803.if !defined(DB_FROM_SRC)
804#
805# Check for missing UIDs/GIDs.
806#
807CHECK_UIDS=	auditdistd
808CHECK_GIDS=	audit
809.if ${MK_SENDMAIL} != "no"
810CHECK_UIDS+=	smmsp
811CHECK_GIDS+=	smmsp
812.endif
813.if ${MK_PF} != "no"
814CHECK_UIDS+=	proxy
815CHECK_GIDS+=	proxy authpf
816.endif
817.if ${MK_UNBOUND} != "no"
818CHECK_UIDS+=	unbound
819CHECK_GIDS+=	unbound
820.endif
821_installcheck_world: __installcheck_UGID
822__installcheck_UGID:
823.for uid in ${CHECK_UIDS}
824	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
825		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
826		false; \
827	fi
828.endfor
829.for gid in ${CHECK_GIDS}
830	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
831		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
832		false; \
833	fi
834.endfor
835.endif
836
837#
838# Required install tools to be saved in a scratch dir for safety.
839#
840.if ${MK_ZONEINFO} != "no"
841_zoneinfo=	zic tzsetup
842.endif
843
844ITOOLS=	[ awk cap_mkdb cat chflags chmod chown cmp cp \
845	date echo egrep find grep id install ${_install-info} \
846	ln make mkdir mtree mv pwd_mkdb \
847	rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \
848	${LOCAL_ITOOLS}
849
850# Needed for share/man
851.if ${MK_MAN} != "no"
852ITOOLS+=makewhatis
853.endif
854
855#
856# distributeworld
857#
858# Distributes everything compiled by a `buildworld'.
859#
860# installworld
861#
862# Installs everything compiled by a 'buildworld'.
863#
864
865# Non-base distributions produced by the base system
866EXTRA_DISTRIBUTIONS=	doc
867.if defined(LIB32TMP) && ${MK_LIB32} != "no"
868EXTRA_DISTRIBUTIONS+=	lib32
869.endif
870.if ${MK_TESTS} != "no"
871EXTRA_DISTRIBUTIONS+=	tests
872.endif
873
874DEBUG_DISTRIBUTIONS=
875.if ${MK_DEBUG_FILES} != "no"
876DEBUG_DISTRIBUTIONS+=	base ${EXTRA_DISTRIBUTIONS:S,doc,,:S,tests,,}
877.endif
878
879MTREE_MAGIC?=	mtree 2.0
880
881distributeworld installworld: _installcheck_world
882	mkdir -p ${INSTALLTMP}
883	progs=$$(for prog in ${ITOOLS}; do \
884		if progpath=`which $$prog`; then \
885			echo $$progpath; \
886		else \
887			echo "Required tool $$prog not found in PATH." >&2; \
888			exit 1; \
889		fi; \
890	    done); \
891	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
892	    while read line; do \
893		set -- $$line; \
894		if [ "$$2 $$3" != "not found" ]; then \
895			echo $$2; \
896		else \
897			echo "Required library $$1 not found." >&2; \
898			exit 1; \
899		fi; \
900	    done); \
901	cp $$libs $$progs ${INSTALLTMP}
902	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
903.if defined(NO_ROOT)
904	echo "#${MTREE_MAGIC}" > ${METALOG}
905.endif
906.if make(distributeworld)
907.for dist in ${EXTRA_DISTRIBUTIONS}
908	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
909	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
910	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
911	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
912	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
913	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
914	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
915.if ${MK_DEBUG_FILES} != "no"
916	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
917	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
918.endif
919.if ${MK_LIB32} != "no"
920	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \
921	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
922.if ${MK_DEBUG_FILES} != "no"
923	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \
924	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null
925.endif
926.endif
927.if ${MK_TESTS} != "no" && ${dist} == "tests"
928	-mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
929	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
930	    -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
931.if ${MK_DEBUG_FILES} != "no"
932	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
933	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null
934.endif
935.endif
936.if defined(NO_ROOT)
937	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
938	    sed -e 's#^\./#./${dist}/#' >> ${METALOG}
939	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
940	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
941	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
942	    sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
943.if ${MK_LIB32} != "no"
944	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib32.dist | \
945	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
946.endif
947.endif
948.endfor
949	-mkdir ${DESTDIR}/${DISTDIR}/base
950	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
951	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
952	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
953	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
954.endif
955	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
956	    ${IMAKEENV} rm -rf ${INSTALLTMP}
957.if make(distributeworld)
958.for dist in ${EXTRA_DISTRIBUTIONS}
959	find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -empty -delete
960.endfor
961.if defined(NO_ROOT)
962.for dist in base ${EXTRA_DISTRIBUTIONS}
963	@# For each file that exists in this dist, print the corresponding
964	@# line from the METALOG.  This relies on the fact that
965	@# a line containing only the filename will sort immediatly before
966	@# the relevant mtree line.
967	cd ${DESTDIR}/${DISTDIR}; \
968	find ./${dist} | sort -u ${METALOG} - | \
969	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
970	${DESTDIR}/${DISTDIR}/${dist}.meta
971.endfor
972.for dist in ${DEBUG_DISTRIBUTIONS}
973	@# For each file that exists in this dist, print the corresponding
974	@# line from the METALOG.  This relies on the fact that
975	@# a line containing only the filename will sort immediatly before
976	@# the relevant mtree line.
977	cd ${DESTDIR}/${DISTDIR}; \
978	find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
979	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
980	${DESTDIR}/${DISTDIR}/${dist}.debug.meta
981.endfor
982.endif
983.endif
984
985packageworld:
986.for dist in base ${EXTRA_DISTRIBUTIONS}
987.if defined(NO_ROOT)
988	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
989	    tar cvf - --exclude usr/lib/debug \
990	    @${DESTDIR}/${DISTDIR}/${dist}.meta | \
991	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}.txz
992.else
993	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
994	    tar cvf - --exclude usr/lib/debug . | \
995	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}.txz
996.endif
997.endfor
998
999.for dist in ${DEBUG_DISTRIBUTIONS}
1000. if defined(NO_ROOT)
1001	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1002	    tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
1003	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz
1004. else
1005	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1006	    tar cvLf - usr/lib/debug | \
1007	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz
1008. endif
1009.endfor
1010
1011#
1012# reinstall
1013#
1014# If you have a build server, you can NFS mount the source and obj directories
1015# and do a 'make reinstall' on the *client* to install new binaries from the
1016# most recent server build.
1017#
1018reinstall: .MAKE .PHONY
1019	@echo "--------------------------------------------------------------"
1020	@echo ">>> Making hierarchy"
1021	@echo "--------------------------------------------------------------"
1022	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1023	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
1024	@echo
1025	@echo "--------------------------------------------------------------"
1026	@echo ">>> Installing everything"
1027	@echo "--------------------------------------------------------------"
1028	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
1029.if defined(LIB32TMP) && ${MK_LIB32} != "no"
1030	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
1031.endif
1032
1033redistribute: .MAKE .PHONY
1034	@echo "--------------------------------------------------------------"
1035	@echo ">>> Distributing everything"
1036	@echo "--------------------------------------------------------------"
1037	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
1038.if defined(LIB32TMP) && ${MK_LIB32} != "no"
1039	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
1040	    DISTRIBUTION=lib32
1041.endif
1042
1043distrib-dirs: .MAKE .PHONY
1044	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1045	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1046
1047distribution: .MAKE .PHONY
1048	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1049	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1050	${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1051		${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1052		METALOG=${METALOG} installconfig
1053
1054#
1055# buildkernel and installkernel
1056#
1057# Which kernels to build and/or install is specified by setting
1058# KERNCONF. If not defined a GENERIC kernel is built/installed.
1059# Only the existing (depending TARGET) config files are used
1060# for building kernels and only the first of these is designated
1061# as the one being installed.
1062#
1063# Note that we have to use TARGET instead of TARGET_ARCH when
1064# we're in kernel-land. Since only TARGET_ARCH is (expected) to
1065# be set to cross-build, we have to make sure TARGET is set
1066# properly.
1067
1068.if defined(KERNFAST)
1069NO_KERNELCLEAN=	t
1070NO_KERNELCONFIG=	t
1071NO_KERNELDEPEND=	t
1072NO_KERNELOBJ=		t
1073# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1074.if !defined(KERNCONF) && ${KERNFAST} != "1"
1075KERNCONF=${KERNFAST}
1076.endif
1077.endif
1078.if ${TARGET_ARCH} == "powerpc64"
1079KERNCONF?=	GENERIC64
1080.else
1081KERNCONF?=	GENERIC
1082.endif
1083INSTKERNNAME?=	kernel
1084
1085KERNSRCDIR?=	${.CURDIR}/sys
1086KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
1087KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
1088KERNCONFDIR?=	${KRNLCONFDIR}
1089
1090BUILDKERNELS=
1091INSTALLKERNEL=
1092.for _kernel in ${KERNCONF}
1093.if exists(${KERNCONFDIR}/${_kernel})
1094BUILDKERNELS+=	${_kernel}
1095.if empty(INSTALLKERNEL)
1096INSTALLKERNEL= ${_kernel}
1097.endif
1098.endif
1099.endfor
1100
1101${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1102
1103#
1104# buildkernel
1105#
1106# Builds all kernels defined by BUILDKERNELS.
1107#
1108buildkernel: .MAKE .PHONY
1109.if empty(BUILDKERNELS)
1110	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1111	false
1112.endif
1113	@echo
1114.for _kernel in ${BUILDKERNELS}
1115	@echo "--------------------------------------------------------------"
1116	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1117	@echo "--------------------------------------------------------------"
1118	@echo "===> ${_kernel}"
1119	mkdir -p ${KRNLOBJDIR}
1120.if !defined(NO_KERNELCONFIG)
1121	@echo
1122	@echo "--------------------------------------------------------------"
1123	@echo ">>> stage 1: configuring the kernel"
1124	@echo "--------------------------------------------------------------"
1125	cd ${KRNLCONFDIR}; \
1126		PATH=${TMPPATH} \
1127		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1128			-I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1129.endif
1130.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1131	@echo
1132	@echo "--------------------------------------------------------------"
1133	@echo ">>> stage 2.1: cleaning up the object tree"
1134	@echo "--------------------------------------------------------------"
1135	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1136.endif
1137.if !defined(NO_KERNELOBJ)
1138	@echo
1139	@echo "--------------------------------------------------------------"
1140	@echo ">>> stage 2.2: rebuilding the object tree"
1141	@echo "--------------------------------------------------------------"
1142	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1143.endif
1144	@echo
1145	@echo "--------------------------------------------------------------"
1146	@echo ">>> stage 2.3: build tools"
1147	@echo "--------------------------------------------------------------"
1148	${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1149.if !defined(NO_KERNELDEPEND)
1150	@echo
1151	@echo "--------------------------------------------------------------"
1152	@echo ">>> stage 3.1: making dependencies"
1153	@echo "--------------------------------------------------------------"
1154	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
1155.endif
1156	@echo
1157	@echo "--------------------------------------------------------------"
1158	@echo ">>> stage 3.2: building everything"
1159	@echo "--------------------------------------------------------------"
1160	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1161	@echo "--------------------------------------------------------------"
1162	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1163	@echo "--------------------------------------------------------------"
1164.endfor
1165
1166#
1167# installkernel, etc.
1168#
1169# Install the kernel defined by INSTALLKERNEL
1170#
1171installkernel installkernel.debug \
1172reinstallkernel reinstallkernel.debug: _installcheck_kernel
1173.if empty(INSTALLKERNEL)
1174	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1175	false
1176.endif
1177	@echo "--------------------------------------------------------------"
1178	@echo ">>> Installing kernel ${INSTALLKERNEL}"
1179	@echo "--------------------------------------------------------------"
1180	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1181	    ${CROSSENV} PATH=${TMPPATH} \
1182	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1183.if ${BUILDKERNELS:[#]} > 1
1184.for _kernel in ${BUILDKERNELS:[2..-1]}
1185	@echo "--------------------------------------------------------------"
1186	@echo ">>> Installing kernel ${_kernel}"
1187	@echo "--------------------------------------------------------------"
1188	cd ${KRNLOBJDIR}/${_kernel}; \
1189	    ${CROSSENV} PATH=${TMPPATH} \
1190	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1191.endfor
1192.endif
1193
1194distributekernel distributekernel.debug:
1195.if empty(INSTALLKERNEL)
1196	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1197	false
1198.endif
1199	mkdir -p ${DESTDIR}/${DISTDIR}
1200.if defined(NO_ROOT)
1201	echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1202.endif
1203	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1204	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1205	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1206	    DESTDIR=${INSTALL_DDIR}/kernel \
1207	    ${.TARGET:S/distributekernel/install/}
1208.if defined(NO_ROOT)
1209	sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1210	    ${DESTDIR}/${DISTDIR}/kernel.meta
1211.endif
1212.if ${BUILDKERNELS:[#]} > 1
1213.for _kernel in ${BUILDKERNELS:[2..-1]}
1214.if defined(NO_ROOT)
1215	echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1216.endif
1217	cd ${KRNLOBJDIR}/${_kernel}; \
1218	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1219	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1220	    KERNEL=${INSTKERNNAME}.${_kernel} \
1221	    DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1222	    ${.TARGET:S/distributekernel/install/}
1223.if defined(NO_ROOT)
1224	sed -e 's|^./kernel|.|' \
1225	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1226	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1227.endif
1228.endfor
1229.endif
1230
1231packagekernel:
1232.if defined(NO_ROOT)
1233	cd ${DESTDIR}/${DISTDIR}/kernel; \
1234	    tar cvf - @${DESTDIR}/${DISTDIR}/kernel.meta | \
1235	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.txz
1236.if ${BUILDKERNELS:[#]} > 1
1237.for _kernel in ${BUILDKERNELS:[2..-1]}
1238	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1239	    tar cvf - @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1240	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz
1241.endfor
1242.endif
1243.else
1244	cd ${DESTDIR}/${DISTDIR}/kernel; \
1245	    tar cvf - . | \
1246	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.txz
1247.if ${BUILDKERNELS:[#]} > 1
1248.for _kernel in ${BUILDKERNELS:[2..-1]}
1249	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1250	    tar cvf - . | \
1251	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz
1252.endfor
1253.endif
1254.endif
1255
1256#
1257# doxygen
1258#
1259# Build the API documentation with doxygen
1260#
1261doxygen: .PHONY
1262	@if [ ! -x `/usr/bin/which doxygen` ]; then \
1263		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1264		exit 1; \
1265	fi
1266	${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
1267
1268#
1269# update
1270#
1271# Update the source tree(s), by running svn/svnup to update to the
1272# latest copy.
1273#
1274update:
1275.if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE)
1276	@echo "--------------------------------------------------------------"
1277	@echo "CVS_UPDATE and SUP_UPDATE are no longer supported."
1278	@echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated"
1279	@echo "--------------------------------------------------------------"
1280	@exit 1
1281.endif
1282.if defined(SVN_UPDATE)
1283	@echo "--------------------------------------------------------------"
1284	@echo ">>> Updating ${.CURDIR} using Subversion"
1285	@echo "--------------------------------------------------------------"
1286	@(cd ${.CURDIR} && ${SVN} update ${SVNFLAGS})
1287.endif
1288
1289#
1290# ------------------------------------------------------------------------
1291#
1292# From here onwards are utility targets used by the 'make world' and
1293# related targets.  If your 'world' breaks, you may like to try to fix
1294# the problem and manually run the following targets to attempt to
1295# complete the build.  Beware, this is *not* guaranteed to work, you
1296# need to have a pretty good grip on the current state of the system
1297# to attempt to manually finish it.  If in doubt, 'make world' again.
1298#
1299
1300#
1301# legacy: Build compatibility shims for the next three targets. This is a
1302# minimal set of tools and shims necessary to compensate for older systems
1303# which don't have the APIs required by the targets built in bootstrap-tools,
1304# build-tools or cross-tools.
1305#
1306
1307# ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
1308.if ${BOOTSTRAPPING} < 1100006
1309_elftoolchain_libs= lib/libelf lib/libdwarf
1310.endif
1311
1312legacy:
1313.if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0
1314	@echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \
1315	false
1316.endif
1317.for _tool in tools/build ${_elftoolchain_libs}
1318	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
1319	    cd ${.CURDIR}/${_tool} && \
1320	    ${MAKE} DIRPRFX=${_tool}/ obj && \
1321	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes && \
1322	    ${MAKE} DIRPRFX=${_tool}/ depend && \
1323	    ${MAKE} DIRPRFX=${_tool}/ all && \
1324	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1325.endfor
1326
1327#
1328# bootstrap-tools: Build tools needed for compatibility. These are binaries that
1329# are built to build other binaries in the system. However, the focus of these
1330# binaries is usually quite narrow. Bootstrap tools use the host's compiler and
1331# libraries, augmented by -legacy.
1332#
1333_bt=		_bootstrap-tools
1334
1335.if ${MK_GAMES} != "no"
1336_strfile=	usr.bin/fortune/strfile
1337.endif
1338
1339.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1340_gperf=		gnu/usr.bin/gperf
1341.endif
1342
1343.if ${MK_GROFF} != "no"
1344_groff=		gnu/usr.bin/groff \
1345		usr.bin/soelim
1346.endif
1347
1348.if ${MK_VT} != "no"
1349_vtfontcvt=	usr.bin/vtfontcvt
1350.endif
1351
1352.if ${BOOTSTRAPPING} < 900002
1353_sed=		usr.bin/sed
1354.endif
1355
1356.if ${BOOTSTRAPPING} < 1000002
1357_libohash=	lib/libohash
1358_m4=		usr.bin/m4
1359
1360${_bt}-usr.bin/m4: ${_bt}-lib/libohash
1361.endif
1362
1363.if ${BOOTSTRAPPING} < 1000026
1364_nmtree=	lib/libnetbsd \
1365		usr.sbin/nmtree
1366
1367${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1368.endif
1369
1370.if ${BOOTSTRAPPING} < 1000027
1371_cat=		bin/cat
1372.endif
1373
1374.if ${BOOTSTRAPPING} < 1000033
1375_lex=		usr.bin/lex
1376
1377${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1378.endif
1379
1380# r277259 crunchide: Correct 64-bit section header offset
1381# r281674 crunchide: always include both 32- and 64-bit ELF support
1382# r285986 crunchen: use STRIPBIN rather than STRIP
1383.if ${BOOTSTRAPPING} < 1100078
1384_crunch=	usr.sbin/crunch
1385.endif
1386
1387.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1388_awk=		usr.bin/awk
1389.endif
1390
1391_yacc=		lib/liby \
1392		usr.bin/yacc
1393
1394${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1395
1396.if ${MK_BSNMP} != "no"
1397_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1398.endif
1399
1400# We need to build tblgen when we're building clang either as
1401# the bootstrap compiler, or as the part of the normal build.
1402.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no"
1403_clang_tblgen= \
1404	lib/clang/libllvmsupport \
1405	lib/clang/libllvmtablegen \
1406	usr.bin/clang/tblgen \
1407	usr.bin/clang/clang-tblgen
1408
1409${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1410${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1411.endif
1412
1413# Default to building the GPL DTC, but build the BSDL one if users explicitly
1414# request it.
1415_dtc= usr.bin/dtc
1416.if ${MK_GPL_DTC} != "no"
1417_dtc= gnu/usr.bin/dtc
1418.endif
1419
1420.if ${MK_KERBEROS} != "no"
1421_kerberos5_bootstrap_tools= \
1422	kerberos5/tools/make-roken \
1423	kerberos5/lib/libroken \
1424	kerberos5/lib/libvers \
1425	kerberos5/tools/asn1_compile \
1426	kerberos5/tools/slc \
1427	usr.bin/compile_et
1428
1429.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1430.endif
1431
1432.if ${MK_MANDOCDB} != "no"
1433_libohash?=	lib/libohash
1434_makewhatis=	lib/libsqlite3 \
1435		usr.bin/mandoc
1436${_bt}-usr.bin/mandoc: ${_bt}-lib/libohash ${_bt}-lib/libsqlite3
1437.else
1438_makewhatis=usr.bin/makewhatis
1439.endif
1440
1441# Rebuild up-to-date libmd for xinstall
1442${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd
1443
1444bootstrap-tools: .PHONY
1445
1446#	Please document (add comment) why something is in 'bootstrap-tools'.
1447#	Try to bound the building of the bootstrap-tool to just the
1448#	FreeBSD versions that need the tool built at this stage of the build.
1449.for _tool in \
1450    ${_clang_tblgen} \
1451    ${_kerberos5_bootstrap_tools} \
1452    ${_strfile} \
1453    ${_gperf} \
1454    ${_groff} \
1455    ${_dtc} \
1456    ${_awk} \
1457    ${_cat} \
1458    usr.bin/lorder \
1459    ${_libohash} \
1460    ${_makewhatis} \
1461    usr.bin/rpcgen \
1462    ${_sed} \
1463    ${_yacc} \
1464    ${_m4} \
1465    ${_lex} \
1466    lib/libmd \
1467    usr.bin/xinstall \
1468    ${_gensnmptree} \
1469    usr.sbin/config \
1470    ${_crunch} \
1471    ${_nmtree} \
1472    ${_vtfontcvt}
1473${_bt}-${_tool}: .PHONY .MAKE
1474	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1475		cd ${.CURDIR}/${_tool} && \
1476		${MAKE} DIRPRFX=${_tool}/ obj && \
1477		${MAKE} DIRPRFX=${_tool}/ depend && \
1478		${MAKE} DIRPRFX=${_tool}/ all && \
1479		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1480
1481bootstrap-tools: ${_bt}-${_tool}
1482.endfor
1483
1484#
1485# build-tools: Build special purpose build tools
1486#
1487.if !defined(NO_SHARE)
1488_share=	share/syscons/scrnmaps
1489.endif
1490
1491.if ${MK_GCC} != "no"
1492_gcc_tools= gnu/usr.bin/cc/cc_tools
1493.endif
1494
1495.if ${MK_RESCUE} != "no"
1496# rescue includes programs that have build-tools targets
1497_rescue=rescue/rescue
1498.endif
1499
1500build-tools: .MAKE
1501.for _tool in \
1502    bin/csh \
1503    bin/sh \
1504    ${LOCAL_TOOL_DIRS} \
1505    lib/ncurses/ncurses \
1506    lib/ncurses/ncursesw \
1507    ${_rescue} \
1508    ${_share} \
1509    usr.bin/awk \
1510    lib/libmagic \
1511    usr.bin/mkesdb_static \
1512    usr.bin/mkcsmapper_static \
1513    usr.bin/vi/catalog
1514	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1515		cd ${.CURDIR}/${_tool} && \
1516		${MAKE} DIRPRFX=${_tool}/ obj && \
1517		${MAKE} DIRPRFX=${_tool}/ build-tools
1518.endfor
1519.for _tool in \
1520    ${_gcc_tools}
1521	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1522		cd ${.CURDIR}/${_tool} && \
1523		${MAKE} DIRPRFX=${_tool}/ obj && \
1524		${MAKE} DIRPRFX=${_tool}/ depend && \
1525		${MAKE} DIRPRFX=${_tool}/ all
1526.endfor
1527
1528#
1529# kernel-tools: Build kernel-building tools
1530#
1531kernel-tools:
1532	mkdir -p ${MAKEOBJDIRPREFIX}/usr
1533	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1534	    -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1535
1536#
1537# cross-tools: All the tools needed to build the rest of the system after
1538# we get done with the earlier stages. It is the last set of tools needed
1539# to begin building the target binaries.
1540#
1541.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1542.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1543_btxld=		usr.sbin/btxld
1544.endif
1545.endif
1546
1547# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
1548# resulting from missing bug fixes or ELF Toolchain updates.
1549.if ${MK_CDDL} != "no"
1550_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
1551    cddl/usr.bin/ctfmerge
1552.endif
1553
1554# If we're given an XAS, don't build binutils.
1555.if ${XAS:M/*} == ""
1556.if ${MK_BINUTILS_BOOTSTRAP} != "no"
1557_binutils=	gnu/usr.bin/binutils
1558.endif
1559.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1560_elftctools=	lib/libelftc \
1561		usr.bin/elfcopy \
1562		usr.bin/nm \
1563		usr.bin/size \
1564		usr.bin/strings
1565# These are not required by the build, but can be useful for developers who
1566# cross-build on a FreeBSD 10 host:
1567_elftctools+=	usr.bin/addr2line
1568.endif
1569.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1570# If cross-building with an external binutils we still need to build strip for
1571# the target (for at least crunchide).
1572_elftctools=	lib/libelftc \
1573		usr.bin/elfcopy
1574.endif
1575
1576# If an full path to an external cross compiler is given, don't build
1577# a cross compiler.
1578.if ${XCC:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1579.if ${MK_CLANG_BOOTSTRAP} != "no"
1580_clang=		usr.bin/clang
1581_clang_libs=	lib/clang
1582.endif
1583.if ${MK_GCC_BOOTSTRAP} != "no"
1584_cc=		gnu/usr.bin/cc
1585.endif
1586.endif
1587.if ${MK_USB} != "no"
1588_usb_tools=	sys/boot/usb/tools
1589.endif
1590
1591cross-tools: .MAKE .PHONY
1592.for _tool in \
1593    ${_clang_libs} \
1594    ${_clang} \
1595    ${_binutils} \
1596    ${_elftctools} \
1597    ${_dtrace_tools} \
1598    ${_cc} \
1599    ${_btxld} \
1600    ${_crunchide} \
1601    ${_usb_tools}
1602	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1603		cd ${.CURDIR}/${_tool} && \
1604		${MAKE} DIRPRFX=${_tool}/ obj && \
1605		${MAKE} DIRPRFX=${_tool}/ depend && \
1606		${MAKE} DIRPRFX=${_tool}/ all && \
1607		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1608.endfor
1609
1610NXBENV=		MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1611		INSTALL="sh ${.CURDIR}/tools/install.sh" \
1612		PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
1613NXBMAKE=	${NXBENV} ${MAKE} \
1614		TBLGEN=${OBJTREE}/nxb-bin/usr/bin/tblgen \
1615		CLANG_TBLGEN=${OBJTREE}/nxb-bin/usr/bin/clang-tblgen \
1616		MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1617		MK_GDB=no MK_TESTS=no \
1618		SSP_CFLAGS= \
1619		MK_HTML=no NO_LINT=yes MK_MAN=no \
1620		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
1621		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
1622		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
1623		MK_LLDB=no
1624
1625# native-xtools is the current target for qemu-user cross builds of ports
1626# via poudriere and the imgact_binmisc kernel module.
1627# For non-clang enabled targets that are still using the in tree gcc
1628# we must build a gperf binary for one instance of its Makefiles.  On
1629# clang-enabled systems, the gperf binary is obsolete.
1630native-xtools: .PHONY
1631.if ${MK_GCC_BOOTSTRAP} != "no"
1632	mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
1633	${_+_}@${ECHODIR} "===> ${_gperf} (obj,depend,all,install)"; \
1634	cd ${.CURDIR}/${_gperf} && \
1635	${NXBMAKE} DIRPRFX=${_gperf}/ obj && \
1636	${NXBMAKE} DIRPRFX=${_gperf}/ depend && \
1637	${NXBMAKE} DIRPRFX=${_gperf}/ all && \
1638	${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
1639.endif
1640	mkdir -p ${OBJTREE}/nxb-bin/bin
1641	mkdir -p ${OBJTREE}/nxb-bin/sbin
1642	mkdir -p ${OBJTREE}/nxb-bin/usr
1643	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1644	    -p ${OBJTREE}/nxb-bin/usr >/dev/null
1645	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1646	    -p ${OBJTREE}/nxb-bin/usr/include >/dev/null
1647.for _tool in \
1648    bin/cat \
1649    bin/chmod \
1650    bin/cp \
1651    bin/csh \
1652    bin/echo \
1653    bin/expr \
1654    bin/hostname \
1655    bin/ln \
1656    bin/ls \
1657    bin/mkdir \
1658    bin/mv \
1659    bin/ps \
1660    bin/realpath \
1661    bin/rm \
1662    bin/rmdir \
1663    bin/sh \
1664    bin/sleep \
1665    ${_clang_tblgen} \
1666    usr.bin/ar \
1667    ${_binutils} \
1668    ${_elftctools} \
1669    ${_cc} \
1670    ${_gcc_tools} \
1671    ${_clang_libs} \
1672    ${_clang} \
1673    sbin/md5 \
1674    sbin/sysctl \
1675    gnu/usr.bin/diff \
1676    usr.bin/awk \
1677    usr.bin/basename \
1678    usr.bin/bmake \
1679    usr.bin/bzip2 \
1680    usr.bin/cmp \
1681    usr.bin/dirname \
1682    usr.bin/env \
1683    usr.bin/fetch \
1684    usr.bin/find \
1685    usr.bin/grep \
1686    usr.bin/gzip \
1687    usr.bin/id \
1688    usr.bin/lex \
1689    usr.bin/lorder \
1690    usr.bin/mktemp \
1691    usr.bin/mt \
1692    usr.bin/patch \
1693    usr.bin/sed \
1694    usr.bin/sort \
1695    usr.bin/tar \
1696    usr.bin/touch \
1697    usr.bin/tr \
1698    usr.bin/true \
1699    usr.bin/uniq \
1700    usr.bin/unzip \
1701    usr.bin/xargs \
1702    usr.bin/xinstall \
1703    usr.bin/xz \
1704    usr.bin/yacc \
1705    usr.sbin/chown
1706	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1707		cd ${.CURDIR}/${_tool} && \
1708		${NXBMAKE} DIRPRFX=${_tool}/ obj && \
1709		${NXBMAKE} DIRPRFX=${_tool}/ depend && \
1710		${NXBMAKE} DIRPRFX=${_tool}/ all && \
1711		${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${OBJTREE}/nxb-bin install
1712.endfor
1713
1714#
1715# hierarchy - ensure that all the needed directories are present
1716#
1717hierarchy hier: .MAKE .PHONY
1718	${_+_}cd ${.CURDIR}/etc && ${HMAKE} distrib-dirs
1719
1720#
1721# libraries - build all libraries, and install them under ${DESTDIR}.
1722#
1723# The list of libraries with dependents (${_prebuild_libs}) and their
1724# interdependencies (__L) are built automatically by the
1725# ${.CURDIR}/tools/make_libdeps.sh script.
1726#
1727libraries: .MAKE .PHONY
1728	${_+_}cd ${.CURDIR} && \
1729	    ${MAKE} -f Makefile.inc1 _prereq_libs && \
1730	    ${MAKE} -f Makefile.inc1 _startup_libs && \
1731	    ${MAKE} -f Makefile.inc1 _prebuild_libs && \
1732	    ${MAKE} -f Makefile.inc1 _generic_libs
1733
1734#
1735# static libgcc.a prerequisite for shared libc
1736#
1737_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1738
1739# These dependencies are not automatically generated:
1740#
1741# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1742# all shared libraries for ELF.
1743#
1744_startup_libs=	gnu/lib/csu
1745_startup_libs+=	lib/csu
1746_startup_libs+=	gnu/lib/libgcc
1747_startup_libs+=	lib/libcompiler_rt
1748_startup_libs+=	lib/libc
1749_startup_libs+=	lib/libc_nonshared
1750.if ${MK_LIBCPLUSPLUS} != "no"
1751_startup_libs+=	lib/libcxxrt
1752.endif
1753
1754gnu/lib/libgcc__L: lib/libc__L
1755gnu/lib/libgcc__L: lib/libc_nonshared__L
1756.if ${MK_LIBCPLUSPLUS} != "no"
1757lib/libcxxrt__L: gnu/lib/libgcc__L
1758.endif
1759
1760_prebuild_libs=	${_kerberos5_lib_libasn1} \
1761		${_kerberos5_lib_libhdb} \
1762		${_kerberos5_lib_libheimbase} \
1763		${_kerberos5_lib_libheimntlm} \
1764		${_libsqlite3} \
1765		${_kerberos5_lib_libheimipcc} \
1766		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1767		${_kerberos5_lib_libroken} \
1768		${_kerberos5_lib_libwind} \
1769		lib/libbz2 ${_libcom_err} lib/libcrypt \
1770		lib/libelf lib/libexpat \
1771		lib/libfigpar \
1772		${_lib_libgssapi} \
1773		lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
1774		${_lib_libcapsicum} \
1775		lib/ncurses/ncurses lib/ncurses/ncursesw \
1776		lib/libopie lib/libpam ${_lib_libthr} \
1777		${_lib_libradius} lib/libsbuf lib/libtacplus \
1778		lib/libgeom \
1779		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1780		${_cddl_lib_libuutil} \
1781		${_cddl_lib_libavl} \
1782		${_cddl_lib_libzfs_core} \
1783		${_cddl_lib_libctf} \
1784		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
1785		${_secure_lib_libcrypto} ${_lib_libldns} \
1786		${_secure_lib_libssh} ${_secure_lib_libssl} \
1787		gnu/lib/libdialog
1788.if ${MK_GNUCXX} != "no"
1789_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1790gnu/lib/libstdc++__L: lib/msun__L
1791gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
1792.endif
1793
1794.if ${MK_LIBCPLUSPLUS} != "no"
1795_prebuild_libs+= lib/libc++
1796.endif
1797
1798lib/libgeom__L: lib/libexpat__L
1799
1800.if ${MK_LIBTHR} != "no"
1801_lib_libthr=	lib/libthr
1802.endif
1803
1804.if ${MK_RADIUS_SUPPORT} != "no"
1805_lib_libradius=	lib/libradius
1806.endif
1807
1808.if ${MK_OFED} != "no"
1809_ofed_lib=	contrib/ofed/usr.lib/
1810.endif
1811
1812.if ${MK_CASPER} != "no"
1813_lib_libcapsicum=lib/libcapsicum
1814.endif
1815
1816lib/libcapsicum__L: lib/libnv__L
1817lib/libpjdlog__L: lib/libutil__L
1818lib/liblzma__L: lib/libthr__L
1819
1820_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1821.for _DIR in ${LOCAL_LIB_DIRS}
1822.if exists(${.CURDIR}/${_DIR}/Makefile)
1823_generic_libs+= ${_DIR}
1824.endif
1825.endfor
1826
1827lib/libopie__L lib/libtacplus__L: lib/libmd__L
1828
1829.if ${MK_CDDL} != "no"
1830_cddl_lib_libumem= cddl/lib/libumem
1831_cddl_lib_libnvpair= cddl/lib/libnvpair
1832_cddl_lib_libavl= cddl/lib/libavl
1833_cddl_lib_libuutil= cddl/lib/libuutil
1834_cddl_lib_libzfs_core= cddl/lib/libzfs_core
1835_cddl_lib_libctf= cddl/lib/libctf
1836_cddl_lib= cddl/lib
1837cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1838cddl/lib/libzfs__L: lib/libgeom__L
1839cddl/lib/libctf__L: lib/libz__L
1840.endif
1841# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
1842# on select architectures though (see cddl/lib/Makefile)
1843.if ${MACHINE_CPUARCH} != "sparc64"
1844_prebuild_libs+=	lib/libproc lib/librtld_db
1845.endif
1846
1847.if ${MK_CRYPT} != "no"
1848.if ${MK_OPENSSL} != "no"
1849_secure_lib_libcrypto= secure/lib/libcrypto
1850_secure_lib_libssl= secure/lib/libssl
1851lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1852.if ${MK_LDNS} != "no"
1853_lib_libldns= lib/libldns
1854lib/libldns__L: secure/lib/libcrypto__L
1855.endif
1856.if ${MK_OPENSSH} != "no"
1857_secure_lib_libssh= secure/lib/libssh
1858secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1859.if ${MK_LDNS} != "no"
1860secure/lib/libssh__L: lib/libldns__L
1861.endif
1862.if ${MK_KERBEROS_SUPPORT} != "no"
1863secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1864    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1865    lib/libmd__L kerberos5/lib/libroken__L
1866.endif
1867.endif
1868.endif
1869_secure_lib=	secure/lib
1870.endif
1871
1872.if ${MK_KERBEROS} != "no"
1873kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1874kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1875    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1876    kerberos5/lib/libwind__L lib/libsqlite3__L
1877kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1878    kerberos5/lib/libroken__L lib/libcom_err__L
1879kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1880    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1881kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1882    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1883    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1884    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1885kerberos5/lib/libroken__L: lib/libcrypt__L
1886kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1887kerberos5/lib/libheimbase__L: lib/libthr__L
1888kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1889.endif
1890
1891lib/libsqlite3__L: lib/libthr__L
1892
1893.if ${MK_GSSAPI} != "no"
1894_lib_libgssapi=	lib/libgssapi
1895.endif
1896
1897.if ${MK_KERBEROS} != "no"
1898_kerberos5_lib=	kerberos5/lib
1899_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1900_kerberos5_lib_libhdb= kerberos5/lib/libhdb
1901_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1902_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1903_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1904_kerberos5_lib_libroken= kerberos5/lib/libroken
1905_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1906_libsqlite3= lib/libsqlite3
1907_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1908_kerberos5_lib_libwind= kerberos5/lib/libwind
1909_libcom_err= lib/libcom_err
1910.endif
1911
1912.if ${MK_NIS} != "no"
1913_lib_libypclnt=	lib/libypclnt
1914.endif
1915
1916.if ${MK_OPENSSL} == "no"
1917lib/libradius__L: lib/libmd__L
1918.endif
1919
1920lib/libproc__L: \
1921    ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
1922.if ${MK_CXX} != "no"
1923.if ${MK_LIBCPLUSPLUS} != "no"
1924lib/libproc__L: lib/libcxxrt__L
1925.else # This implies MK_GNUCXX != "no"; see lib/libproc
1926lib/libproc__L: gnu/lib/libsupc++__L
1927.endif
1928.endif
1929
1930gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
1931
1932.for _lib in ${_prereq_libs}
1933${_lib}__PL: .PHONY .MAKE
1934.if exists(${.CURDIR}/${_lib})
1935	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1936		cd ${.CURDIR}/${_lib} && \
1937		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \
1938		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \
1939		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
1940		    DIRPRFX=${_lib}/ all && \
1941		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
1942		    DIRPRFX=${_lib}/ install
1943.endif
1944.endfor
1945
1946.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1947${_lib}__L: .PHONY .MAKE
1948.if exists(${.CURDIR}/${_lib})
1949	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1950		cd ${.CURDIR}/${_lib} && \
1951		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \
1952		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \
1953		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all && \
1954		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
1955.endif
1956.endfor
1957
1958# libpam is special: we need to build static PAM modules before
1959# static PAM library, and dynamic PAM library before dynamic PAM
1960# modules.
1961lib/libpam__L: .PHONY .MAKE
1962	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1963		cd ${.CURDIR}/lib/libpam && \
1964		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ obj && \
1965		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ depend && \
1966		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
1967		    -D_NO_LIBPAM_SO_YET all && \
1968		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
1969		    -D_NO_LIBPAM_SO_YET install
1970
1971_prereq_libs: ${_prereq_libs:S/$/__PL/}
1972_startup_libs: ${_startup_libs:S/$/__L/}
1973_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1974_generic_libs: ${_generic_libs:S/$/__L/}
1975
1976# Enable SUBDIR_PARALLEL when not calling 'make all', unless called as
1977# 'par-all'.  This is because it is unlikely that running 'make all' from
1978# the top-level, especially with a SUBDIR_OVERRIDE or LOCAL_DIRS set,
1979# will have a reliable build if SUBDIRs are built in parallel.  This is
1980# safe for the world stage of buildworld though since it has already
1981# built libraries in a proper order and installed includes into WORLDTMP.
1982# Special handling is done for SUBDIR ordering for 'install*' to avoid
1983# trashing a system if it crashes mid-install.
1984par-all: all .PHONY
1985.if !make(all)
1986SUBDIR_PARALLEL=
1987.endif
1988
1989.include <bsd.subdir.mk>
1990
1991.if make(check-old) || make(check-old-dirs) || \
1992    make(check-old-files) || make(check-old-libs) || \
1993    make(delete-old) || make(delete-old-dirs) || \
1994    make(delete-old-files) || make(delete-old-libs)
1995
1996#
1997# check for / delete old files section
1998#
1999
2000.include "ObsoleteFiles.inc"
2001
2002OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
2003else you can not start such an application. Consult UPDATING for more \
2004information regarding how to cope with the removal/revision bump of a \
2005specific library."
2006
2007.if !defined(BATCH_DELETE_OLD_FILES)
2008RM_I=-i
2009.else
2010RM_I=-v
2011.endif
2012
2013delete-old-files:
2014	@echo ">>> Removing old files (only deletes safe to delete libs)"
2015# Ask for every old file if the user really wants to remove it.
2016# It's annoying, but better safe than sorry.
2017# NB: We cannot pass the list of OLD_FILES as a parameter because the
2018# argument list will get too long. Using .for/.endfor make "loops" will make
2019# the Makefile parser segfault.
2020	@exec 3<&0; \
2021	cd ${.CURDIR}; \
2022	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2023	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2024	while read file; do \
2025		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2026			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2027			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2028		fi; \
2029		for ext in debug symbols; do \
2030		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2031		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2032			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2033			      <&3; \
2034		  fi; \
2035		done; \
2036	done
2037# Remove catpages without corresponding manpages.
2038	@exec 3<&0; \
2039	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2040	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2041	while read catpage; do \
2042		read manpage; \
2043		if [ ! -e "$${manpage}" ]; then \
2044			rm ${RM_I} $${catpage} <&3; \
2045	        fi; \
2046	done
2047	@echo ">>> Old files removed"
2048
2049check-old-files:
2050	@echo ">>> Checking for old files"
2051	@cd ${.CURDIR}; \
2052	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2053	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2054	while read file; do \
2055		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2056		 	echo "${DESTDIR}/$${file}"; \
2057		fi; \
2058		for ext in debug symbols; do \
2059		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2060			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2061		  fi; \
2062		done; \
2063	done
2064# Check for catpages without corresponding manpages.
2065	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2066	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2067	while read catpage; do \
2068		read manpage; \
2069		if [ ! -e "$${manpage}" ]; then \
2070			echo $${catpage}; \
2071	        fi; \
2072	done
2073
2074delete-old-libs:
2075	@echo ">>> Removing old libraries"
2076	@echo "${OLD_LIBS_MESSAGE}" | fmt
2077	@exec 3<&0; \
2078	cd ${.CURDIR}; \
2079	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2080	    -V OLD_LIBS | xargs -n1 | \
2081	while read file; do \
2082		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2083			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2084			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2085		fi; \
2086		for ext in debug symbols; do \
2087		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2088		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2089			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2090			      <&3; \
2091		  fi; \
2092		done; \
2093	done
2094	@echo ">>> Old libraries removed"
2095
2096check-old-libs:
2097	@echo ">>> Checking for old libraries"
2098	@cd ${.CURDIR}; \
2099	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2100	    -V OLD_LIBS | xargs -n1 | \
2101	while read file; do \
2102		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2103			echo "${DESTDIR}/$${file}"; \
2104		fi; \
2105		for ext in debug symbols; do \
2106		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2107			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2108		  fi; \
2109		done; \
2110	done
2111
2112delete-old-dirs:
2113	@echo ">>> Removing old directories"
2114	@cd ${.CURDIR}; \
2115	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2116	    -V OLD_DIRS | xargs -n1 | sort -r | \
2117	while read dir; do \
2118		if [ -d "${DESTDIR}/$${dir}" ]; then \
2119			rmdir -v "${DESTDIR}/$${dir}" || true; \
2120		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2121			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2122		fi; \
2123	done
2124	@echo ">>> Old directories removed"
2125
2126check-old-dirs:
2127	@echo ">>> Checking for old directories"
2128	@cd ${.CURDIR}; \
2129	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2130	    -V OLD_DIRS | xargs -n1 | \
2131	while read dir; do \
2132		if [ -d "${DESTDIR}/$${dir}" ]; then \
2133			echo "${DESTDIR}/$${dir}"; \
2134		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2135			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2136		fi; \
2137	done
2138
2139delete-old: delete-old-files delete-old-dirs
2140	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
2141
2142check-old: check-old-files check-old-libs check-old-dirs
2143	@echo "To remove old files and directories run '${MAKE} delete-old'."
2144	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
2145
2146.endif
2147
2148#
2149# showconfig - show build configuration.
2150#
2151showconfig:
2152	@(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1; \
2153	  ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1) 2>&1 | grep ^MK_ | sort -u
2154
2155.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2156DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2157
2158.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2159.if exists(${KERNCONFDIR}/${KERNCONF})
2160FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2161	'${KERNCONFDIR}/${KERNCONF}' ; echo
2162.endif
2163.endif
2164
2165.endif
2166
2167.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2168DTBOUTPUTPATH= ${.CURDIR}
2169.endif
2170
2171#
2172# Build 'standalone' Device Tree Blob
2173#
2174builddtb:
2175	@PATH=${TMPPATH} MACHINE=${TARGET} \
2176	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2177	    "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2178
2179###############
2180
2181.if defined(TARGET) && defined(TARGET_ARCH)
2182
2183.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2184XDEV_CPUTYPE?=${CPUTYPE}
2185.else
2186XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2187.endif
2188
2189NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2190	MK_MAN=no MK_NLS=no MK_PROFILE=no \
2191	MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2192	TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2193	CPUTYPE=${XDEV_CPUTYPE}
2194
2195XDDIR=${TARGET_ARCH}-freebsd
2196XDTP?=/usr/${XDDIR}
2197.if ${XDTP:N/*}
2198.error XDTP variable should be an absolute path
2199.endif
2200
2201CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2202	INSTALL="sh ${.CURDIR}/tools/install.sh"
2203CDENV= ${CDBENV} \
2204	TOOLS_PREFIX=${XDTP}
2205CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2206	--sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2207	-B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2208CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2209	CPP="${CPP} ${CD2CFLAGS}" \
2210	MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2211
2212CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2213CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2214CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2215XDDESTDIR=${DESTDIR}/${XDTP}
2216.if !defined(OSREL)
2217OSREL!= uname -r | sed -e 's/[-(].*//'
2218.endif
2219
2220.ORDER: xdev-build xdev-install xdev-links
2221xdev: xdev-build xdev-install
2222
2223.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2224xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2225
2226_xb-worldtmp: .PHONY
2227	mkdir -p ${CDTMP}/usr
2228	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2229	    -p ${CDTMP}/usr >/dev/null
2230
2231_xb-bootstrap-tools: .PHONY
2232.for _tool in \
2233    ${_clang_tblgen} \
2234    ${_gperf}
2235	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
2236	cd ${.CURDIR}/${_tool} && \
2237	${CDMAKE} DIRPRFX=${_tool}/ obj && \
2238	${CDMAKE} DIRPRFX=${_tool}/ depend && \
2239	${CDMAKE} DIRPRFX=${_tool}/ all && \
2240	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2241.endfor
2242
2243_xb-build-tools: .PHONY
2244	${_+_}@cd ${.CURDIR}; \
2245	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2246
2247_xb-cross-tools: .PHONY
2248.for _tool in \
2249    ${_binutils} \
2250    ${_elftctools} \
2251    usr.bin/ar \
2252    ${_clang_libs} \
2253    ${_clang} \
2254    ${_cc}
2255	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
2256	cd ${.CURDIR}/${_tool} && \
2257	${CDMAKE} DIRPRFX=${_tool}/ obj && \
2258	${CDMAKE} DIRPRFX=${_tool}/ depend && \
2259	${CDMAKE} DIRPRFX=${_tool}/ all
2260.endfor
2261
2262_xi-mtree: .PHONY
2263	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2264	mkdir -p ${XDDESTDIR}
2265	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2266	    -p ${XDDESTDIR} >/dev/null
2267	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2268	    -p ${XDDESTDIR}/usr >/dev/null
2269	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2270	    -p ${XDDESTDIR}/usr/include >/dev/null
2271.if ${MK_LIB32} != "no"
2272	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \
2273	    -p ${XDDESTDIR}/usr >/dev/null
2274.endif
2275.if ${MK_TESTS} != "no"
2276	mkdir -p ${XDDESTDIR}${TESTSBASE}
2277	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2278	    -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2279.endif
2280
2281.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2282xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2283
2284_xi-cross-tools: .PHONY
2285	@echo "_xi-cross-tools"
2286.for _tool in \
2287    ${_binutils} \
2288    ${_elftctools} \
2289    usr.bin/ar \
2290    ${_clang_libs} \
2291    ${_clang} \
2292    ${_cc}
2293	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2294	cd ${.CURDIR}/${_tool}; \
2295	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2296.endfor
2297
2298_xi-includes: .PHONY
2299	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 buildincludes \
2300		DESTDIR=${XDDESTDIR}
2301	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 installincludes \
2302		DESTDIR=${XDDESTDIR}
2303
2304_xi-libraries: .PHONY
2305	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2306		DESTDIR=${XDDESTDIR}
2307
2308xdev-links: .PHONY
2309	${_+_}cd ${XDDESTDIR}/usr/bin; \
2310	mkdir -p ../../../../usr/bin; \
2311		for i in *; do \
2312			ln -sf ../../${XDTP}/usr/bin/$$i \
2313			    ../../../../usr/bin/${XDDIR}-$$i; \
2314			ln -sf ../../${XDTP}/usr/bin/$$i \
2315			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2316		done
2317.else
2318xdev xdev-build xdev-install xdev-links:
2319	@echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2320.endif
2321