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