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