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