Makefile.inc1 revision 273417
1#
2# $FreeBSD: head/Makefile.inc1 273417 2014-10-21 20:29:42Z imp $
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} ${XFLAGS}" CXX="${XCXX} ${XFLAGS} ${XXFLAGS}" \
327		DEPFLAGS="${DEPFLAGS}" \
328		CPP="${XCPP} ${XFLAGS}" \
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
354XFLAGS+=	-isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib
355XXFLAGS+=	-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
360XFLAGS+=	-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 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/usr
1451	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1452	    -p ${OBJTREE}/nxb-bin/usr >/dev/null
1453	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1454	    -p ${OBJTREE}/nxb-bin/usr/include >/dev/null
1455.for _tool in \
1456    ${_clang_tblgen} \
1457    usr.bin/ar \
1458    ${_binutils} \
1459    ${_cc} \
1460    ${_gcc_tools} \
1461    ${_clang_libs} \
1462    ${_clang} \
1463    usr.bin/awk \
1464    usr.bin/bmake \
1465    usr.bin/lex \
1466    usr.bin/lorder \
1467    usr.bin/sed \
1468    usr.bin/yacc
1469	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1470		cd ${.CURDIR}/${_tool} && \
1471		${NXBMAKE} DIRPRFX=${_tool}/ obj && \
1472		${NXBMAKE} DIRPRFX=${_tool}/ depend && \
1473		${NXBMAKE} DIRPRFX=${_tool}/ all && \
1474		${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${OBJTREE}/nxb-bin install
1475.endfor
1476
1477#
1478# hierarchy - ensure that all the needed directories are present
1479#
1480hierarchy hier: .MAKE
1481	cd ${.CURDIR}/etc && ${HMAKE} distrib-dirs
1482
1483#
1484# libraries - build all libraries, and install them under ${DESTDIR}.
1485#
1486# The list of libraries with dependents (${_prebuild_libs}) and their
1487# interdependencies (__L) are built automatically by the
1488# ${.CURDIR}/tools/make_libdeps.sh script.
1489#
1490libraries: .MAKE
1491	cd ${.CURDIR} && \
1492	    ${MAKE} -f Makefile.inc1 _prereq_libs && \
1493	    ${MAKE} -f Makefile.inc1 _startup_libs && \
1494	    ${MAKE} -f Makefile.inc1 _prebuild_libs && \
1495	    ${MAKE} -f Makefile.inc1 _generic_libs
1496
1497#
1498# static libgcc.a prerequisite for shared libc
1499#
1500_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1501
1502# These dependencies are not automatically generated:
1503#
1504# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1505# all shared libraries for ELF.
1506#
1507_startup_libs=	gnu/lib/csu
1508.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1509_startup_libs+=	lib/csu/${MACHINE_ARCH}-elf
1510.elif exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
1511_startup_libs+=	lib/csu/${MACHINE_ARCH}
1512.else
1513_startup_libs+=	lib/csu/${MACHINE_CPUARCH}
1514.endif
1515_startup_libs+=	gnu/lib/libgcc
1516_startup_libs+=	lib/libcompiler_rt
1517_startup_libs+=	lib/libc
1518_startup_libs+=	lib/libc_nonshared
1519.if ${MK_LIBCPLUSPLUS} != "no"
1520_startup_libs+=	lib/libcxxrt
1521.endif
1522
1523gnu/lib/libgcc__L: lib/libc__L
1524gnu/lib/libgcc__L: lib/libc_nonshared__L
1525.if ${MK_LIBCPLUSPLUS} != "no"
1526lib/libcxxrt__L: gnu/lib/libgcc__L
1527.endif
1528
1529_prebuild_libs=	${_kerberos5_lib_libasn1} \
1530		${_kerberos5_lib_libhdb} \
1531		${_kerberos5_lib_libheimbase} \
1532		${_kerberos5_lib_libheimntlm} \
1533		${_kerberos5_lib_libheimsqlite} \
1534		${_kerberos5_lib_libheimipcc} \
1535		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1536		${_kerberos5_lib_libroken} \
1537		${_kerberos5_lib_libwind} \
1538		${_lib_atf} \
1539		lib/libbz2 ${_libcom_err} lib/libcrypt \
1540		lib/libelf lib/libexpat \
1541		${_lib_libgssapi} \
1542		lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
1543		${_lib_libcapsicum} \
1544		lib/ncurses/ncurses lib/ncurses/ncursesw \
1545		lib/libopie lib/libpam ${_lib_libthr} \
1546		lib/libradius lib/libsbuf lib/libtacplus \
1547		lib/libgeom \
1548		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1549		${_cddl_lib_libuutil} \
1550		${_cddl_lib_libavl} \
1551		${_cddl_lib_libzfs_core} \
1552		${_cddl_lib_libctf} \
1553		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
1554		${_secure_lib_libcrypto} ${_lib_libldns} \
1555		${_secure_lib_libssh} ${_secure_lib_libssl}
1556.if ${MK_GNUCXX} != "no"
1557_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1558gnu/lib/libstdc++__L: lib/msun__L
1559gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
1560.endif
1561
1562lib/libgeom__L: lib/libexpat__L
1563
1564.if ${MK_TESTS} != "no"
1565_lib_atf=	lib/atf
1566.endif
1567
1568.if ${MK_LIBTHR} != "no"
1569_lib_libthr=	lib/libthr
1570.endif
1571
1572.if ${MK_OFED} != "no"
1573_ofed_lib=	contrib/ofed/usr.lib/
1574.endif
1575
1576.if ${MK_CASPER} != "no"
1577_lib_libcapsicum=lib/libcapsicum
1578.endif
1579
1580lib/libcapsicum__L: lib/libnv__L
1581lib/libpjdlog__L: lib/libutil__L
1582
1583_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1584.for _DIR in ${LOCAL_LIB_DIRS}
1585.if exists(${.CURDIR}/${_DIR}/Makefile)
1586_generic_libs+= ${_DIR}
1587.endif
1588.endfor
1589
1590lib/libopie__L lib/libtacplus__L: lib/libmd__L
1591
1592.if ${MK_CDDL} != "no"
1593_cddl_lib_libumem= cddl/lib/libumem
1594_cddl_lib_libnvpair= cddl/lib/libnvpair
1595_cddl_lib_libavl= cddl/lib/libavl
1596_cddl_lib_libuutil= cddl/lib/libuutil
1597_cddl_lib_libzfs_core= cddl/lib/libzfs_core
1598_cddl_lib_libctf= cddl/lib/libctf
1599_cddl_lib= cddl/lib
1600cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1601cddl/lib/libzfs__L: lib/libgeom__L
1602cddl/lib/libctf__L: lib/libz__L
1603.endif
1604
1605.if ${MK_CRYPT} != "no"
1606.if ${MK_OPENSSL} != "no"
1607_secure_lib_libcrypto= secure/lib/libcrypto
1608_secure_lib_libssl= secure/lib/libssl
1609lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1610.if ${MK_LDNS} != "no"
1611_lib_libldns= lib/libldns
1612lib/libldns__L: secure/lib/libcrypto__L
1613.endif
1614.if ${MK_OPENSSH} != "no"
1615_secure_lib_libssh= secure/lib/libssh
1616secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1617.if ${MK_LDNS} != "no"
1618secure/lib/libssh__L: lib/libldns__L
1619.endif
1620.if ${MK_KERBEROS_SUPPORT} != "no"
1621secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1622    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1623    lib/libmd__L kerberos5/lib/libroken__L
1624.endif
1625.endif
1626.endif
1627_secure_lib=	secure/lib
1628.endif
1629
1630.if ${MK_KERBEROS} != "no"
1631kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1632kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1633    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1634    kerberos5/lib/libwind__L kerberos5/lib/libheimsqlite__L 
1635kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1636    kerberos5/lib/libroken__L lib/libcom_err__L
1637kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1638    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1639kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1640    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1641    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1642    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1643kerberos5/lib/libroken__L: lib/libcrypt__L
1644kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1645kerberos5/lib/libheimbase__L: lib/libthr__L
1646kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1647kerberos5/lib/libheimsqlite__L: lib/libthr__L
1648.endif
1649
1650.if ${MK_GSSAPI} != "no"
1651_lib_libgssapi=	lib/libgssapi
1652.endif
1653
1654.if ${MK_KERBEROS} != "no"
1655_kerberos5_lib=	kerberos5/lib
1656_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1657_kerberos5_lib_libhdb= kerberos5/lib/libhdb
1658_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1659_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1660_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1661_kerberos5_lib_libroken= kerberos5/lib/libroken
1662_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1663_kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite
1664_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1665_kerberos5_lib_libwind= kerberos5/lib/libwind
1666_libcom_err= lib/libcom_err
1667.endif
1668
1669.if ${MK_NIS} != "no"
1670_lib_libypclnt=	lib/libypclnt
1671.endif
1672
1673.if ${MK_OPENSSL} == "no"
1674lib/libradius__L: lib/libmd__L
1675.endif
1676
1677.for _lib in ${_prereq_libs}
1678${_lib}__PL: .PHONY .MAKE
1679.if exists(${.CURDIR}/${_lib})
1680	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1681		cd ${.CURDIR}/${_lib} && \
1682		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \
1683		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \
1684		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
1685		    DIRPRFX=${_lib}/ all && \
1686		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
1687		    DIRPRFX=${_lib}/ install
1688.endif
1689.endfor
1690
1691.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1692${_lib}__L: .PHONY .MAKE
1693.if exists(${.CURDIR}/${_lib})
1694	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1695		cd ${.CURDIR}/${_lib} && \
1696		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \
1697		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \
1698		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all && \
1699		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
1700.endif
1701.endfor
1702
1703# libpam is special: we need to build static PAM modules before
1704# static PAM library, and dynamic PAM library before dynamic PAM
1705# modules.
1706lib/libpam__L: .PHONY .MAKE
1707	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1708		cd ${.CURDIR}/lib/libpam && \
1709		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ obj && \
1710		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ depend && \
1711		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
1712		    -D_NO_LIBPAM_SO_YET all && \
1713		${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
1714		    -D_NO_LIBPAM_SO_YET install
1715
1716_prereq_libs: ${_prereq_libs:S/$/__PL/}
1717_startup_libs: ${_startup_libs:S/$/__L/}
1718_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1719_generic_libs: ${_generic_libs:S/$/__L/}
1720
1721.for __target in all clean cleandepend cleandir depend includes obj
1722.for entry in ${SUBDIR}
1723${entry}.${__target}__D: .PHONY .MAKE
1724	${_+_}@set -e; if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1725		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1726		edir=${entry}.${MACHINE_ARCH}; \
1727		cd ${.CURDIR}/$${edir}; \
1728	else \
1729		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1730		edir=${entry}; \
1731		cd ${.CURDIR}/$${edir}; \
1732	fi; \
1733	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1734.endfor
1735par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1736.endfor
1737
1738.include <bsd.subdir.mk>
1739
1740.if make(check-old) || make(check-old-dirs) || \
1741    make(check-old-files) || make(check-old-libs) || \
1742    make(delete-old) || make(delete-old-dirs) || \
1743    make(delete-old-files) || make(delete-old-libs)
1744
1745#
1746# check for / delete old files section
1747#
1748
1749.include "ObsoleteFiles.inc"
1750
1751OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1752else you can not start such an application. Consult UPDATING for more \
1753information regarding how to cope with the removal/revision bump of a \
1754specific library."
1755
1756.if !defined(BATCH_DELETE_OLD_FILES)
1757RM_I=-i
1758.else
1759RM_I=-v
1760.endif
1761
1762delete-old-files:
1763	@echo ">>> Removing old files (only deletes safe to delete libs)"
1764# Ask for every old file if the user really wants to remove it.
1765# It's annoying, but better safe than sorry.
1766# NB: We cannot pass the list of OLD_FILES as a parameter because the
1767# argument list will get too long. Using .for/.endfor make "loops" will make
1768# the Makefile parser segfault.
1769	@exec 3<&0; \
1770	cd ${.CURDIR}; \
1771	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1772	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1773	while read file; do \
1774		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1775			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1776			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1777		fi; \
1778	done
1779# Remove catpages without corresponding manpages.
1780	@exec 3<&0; \
1781	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1782	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1783	while read catpage; do \
1784		read manpage; \
1785		if [ ! -e "$${manpage}" ]; then \
1786			rm ${RM_I} $${catpage} <&3; \
1787	        fi; \
1788	done
1789	@echo ">>> Old files removed"
1790
1791check-old-files:
1792	@echo ">>> Checking for old files"
1793	@cd ${.CURDIR}; \
1794	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1795	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1796	while read file; do \
1797		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1798		 	echo "${DESTDIR}/$${file}"; \
1799		fi; \
1800	done
1801# Check for catpages without corresponding manpages.
1802	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1803	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1804	while read catpage; do \
1805		read manpage; \
1806		if [ ! -e "$${manpage}" ]; then \
1807			echo $${catpage}; \
1808	        fi; \
1809	done
1810
1811delete-old-libs:
1812	@echo ">>> Removing old libraries"
1813	@echo "${OLD_LIBS_MESSAGE}" | fmt
1814	@exec 3<&0; \
1815	cd ${.CURDIR}; \
1816	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1817	    -V OLD_LIBS | 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		for ext in debug symbols; do \
1824		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
1825		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1826			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
1827			      <&3; \
1828		  fi; \
1829		done; \
1830	done
1831	@echo ">>> Old libraries removed"
1832
1833check-old-libs:
1834	@echo ">>> Checking for old libraries"
1835	@cd ${.CURDIR}; \
1836	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1837	    -V OLD_LIBS | xargs -n1 | \
1838	while read file; do \
1839		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1840			echo "${DESTDIR}/$${file}"; \
1841		fi; \
1842		for ext in debug symbols; do \
1843		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1844			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
1845		  fi; \
1846		done; \
1847	done
1848
1849delete-old-dirs:
1850	@echo ">>> Removing old directories"
1851	@cd ${.CURDIR}; \
1852	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1853	    -V OLD_DIRS | xargs -n1 | sort -r | \
1854	while read dir; do \
1855		if [ -d "${DESTDIR}/$${dir}" ]; then \
1856			rmdir -v "${DESTDIR}/$${dir}" || true; \
1857		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1858			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1859		fi; \
1860	done
1861	@echo ">>> Old directories removed"
1862
1863check-old-dirs:
1864	@echo ">>> Checking for old directories"
1865	@cd ${.CURDIR}; \
1866	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1867	    -V OLD_DIRS | xargs -n1 | \
1868	while read dir; do \
1869		if [ -d "${DESTDIR}/$${dir}" ]; then \
1870			echo "${DESTDIR}/$${dir}"; \
1871		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1872			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1873		fi; \
1874	done
1875
1876delete-old: delete-old-files delete-old-dirs
1877	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1878
1879check-old: check-old-files check-old-libs check-old-dirs
1880	@echo "To remove old files and directories run '${MAKE} delete-old'."
1881	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1882
1883.endif
1884
1885#
1886# showconfig - show build configuration.
1887#
1888showconfig:
1889	@${MAKE} -n -f src.opts.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort
1890
1891.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1892DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1893
1894.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1895.if exists(${KERNCONFDIR}/${KERNCONF})
1896FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1897	'${KERNCONFDIR}/${KERNCONF}' ; echo
1898.endif
1899.endif
1900
1901.endif
1902
1903.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1904DTBOUTPUTPATH= ${.CURDIR}
1905.endif
1906
1907#
1908# Build 'standalone' Device Tree Blob
1909#
1910builddtb:
1911	@PATH=${TMPPATH} MACHINE=${TARGET} \
1912	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
1913	    "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
1914
1915###############
1916
1917.if defined(TARGET) && defined(TARGET_ARCH)
1918
1919.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
1920XDEV_CPUTYPE?=${CPUTYPE}
1921.else
1922XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1923.endif
1924
1925NOFUN=-DNO_FSCHG MK_HTML=no MK_INFO=no -DNO_LINT \
1926	MK_MAN=no MK_NLS=no MK_PROFILE=no \
1927	MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
1928	TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
1929	CPUTYPE=${XDEV_CPUTYPE}
1930
1931XDDIR=${TARGET_ARCH}-freebsd
1932XDTP?=/usr/${XDDIR}
1933.if ${XDTP:N/*}
1934.error XDTP variable should be an absolute path
1935.endif
1936
1937CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
1938	INSTALL="sh ${.CURDIR}/tools/install.sh"
1939CDENV= ${CDBENV} \
1940	_SHLIBDIRPREFIX=${XDDESTDIR} \
1941	TOOLS_PREFIX=${XDTP}
1942CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
1943	--sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
1944	-B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
1945CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
1946	CPP="${CPP} ${CD2CFLAGS}" \
1947	MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
1948
1949CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
1950CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1951CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1952XDDESTDIR=${DESTDIR}/${XDTP}
1953.if !defined(OSREL)
1954OSREL!= uname -r | sed -e 's/[-(].*//'
1955.endif
1956
1957.ORDER: xdev-build xdev-install xdev-links
1958xdev: xdev-build xdev-install
1959
1960.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
1961xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
1962
1963_xb-worldtmp:
1964	mkdir -p ${CDTMP}/usr
1965	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1966	    -p ${CDTMP}/usr >/dev/null
1967
1968_xb-bootstrap-tools:
1969.for _tool in \
1970    ${_clang_tblgen}
1971	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1972	cd ${.CURDIR}/${_tool} && \
1973	${CDMAKE} DIRPRFX=${_tool}/ obj && \
1974	${CDMAKE} DIRPRFX=${_tool}/ depend && \
1975	${CDMAKE} DIRPRFX=${_tool}/ all && \
1976	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
1977.endfor
1978
1979_xb-build-tools:
1980	${_+_}@cd ${.CURDIR}; \
1981	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1982
1983_xb-cross-tools:
1984.for _tool in \
1985    ${_binutils} \
1986    usr.bin/ar \
1987    ${_clang_libs} \
1988    ${_clang} \
1989    ${_cc}
1990	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1991	cd ${.CURDIR}/${_tool} && \
1992	${CDMAKE} DIRPRFX=${_tool}/ obj && \
1993	${CDMAKE} DIRPRFX=${_tool}/ depend && \
1994	${CDMAKE} DIRPRFX=${_tool}/ all
1995.endfor
1996
1997_xi-mtree:
1998	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1999	mkdir -p ${XDDESTDIR}
2000	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2001	    -p ${XDDESTDIR} >/dev/null
2002	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2003	    -p ${XDDESTDIR}/usr >/dev/null
2004	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2005	    -p ${XDDESTDIR}/usr/include >/dev/null
2006.if ${MK_TESTS} != "no"
2007	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2008	    -p ${XDDESTDIR}/usr >/dev/null
2009.endif
2010
2011.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2012xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2013
2014_xi-cross-tools:
2015	@echo "_xi-cross-tools"
2016.for _tool in \
2017    ${_binutils} \
2018    usr.bin/ar \
2019    ${_clang_libs} \
2020    ${_clang} \
2021    ${_cc}
2022	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2023	cd ${.CURDIR}/${_tool}; \
2024	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2025.endfor
2026
2027_xi-includes:
2028	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
2029		DESTDIR=${XDDESTDIR}
2030
2031_xi-libraries:
2032	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2033		DESTDIR=${XDDESTDIR}
2034
2035xdev-links:
2036	${_+_}cd ${XDDESTDIR}/usr/bin; \
2037	mkdir -p ../../../../usr/bin; \
2038		for i in *; do \
2039			ln -sf ../../${XDTP}/usr/bin/$$i \
2040			    ../../../../usr/bin/${XDDIR}-$$i; \
2041			ln -sf ../../${XDTP}/usr/bin/$$i \
2042			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2043		done
2044.else
2045xdev xdev-build xdev-install xdev-links:
2046	@echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2047.endif
2048