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