xref: /freebsd/Makefile.inc1 (revision 8657387683946d0c03e09fe77029edfe309eeb20)
1#
2# $FreeBSD$
3#
4# Make command line options:
5#	-DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6#	-DNO_CLEAN do not clean at all
7#	-DDB_FROM_SRC use the user/group databases in src/etc instead of
8#	    the system database when installing.
9#	-DNO_SHARE do not go into share subdir
10#	-DKERNFAST define NO_KERNEL{CONFIG,CLEAN,OBJ}
11#	-DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
12#	-DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
13#	-DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
14#	-DNO_PORTSUPDATE do not update ports in ${MAKE} update
15#	-DNO_ROOT install without using root privilege
16#	-DNO_DOCUPDATE do not update doc in ${MAKE} update
17#	-DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects
18#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
19#	LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list
20#	LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target
21#	LOCAL_MTREE="list of mtree files" to process to allow local directories
22#	    to be created before files are installed
23#	LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools
24#	    list
25#	LOCAL_XTOOL_DIRS="list of dirs" to add additional dirs to the
26#	    cross-tools target
27#	METALOG="path to metadata log" to write permission and ownership
28#	    when NO_ROOT is set.  (default: ${DESTDIR}/METALOG)
29#	TARGET="machine" to crossbuild world for a different machine type
30#	TARGET_ARCH= may be required when a TARGET supports multiple endians
31#	BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL})
32#	WORLD_FLAGS= additional flags to pass to make(1) during buildworld
33#	KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel
34#	SUBDIR_OVERRIDE="list of dirs" to build rather than everything.
35#	    All libraries and includes, and some build tools will still build.
36
37#
38# The intended user-driven targets are:
39# buildworld  - rebuild *everything*, including glue to help do upgrades
40# installworld- install everything built by "buildworld"
41# checkworld  - run test suite on installed world
42# doxygen     - build API documentation of the kernel
43# update      - convenient way to update your source tree (eg: svn/svnup)
44#
45# Standard targets (not defined here) are documented in the makefiles in
46# /usr/share/mk.  These include:
47#		obj depend all install clean cleandepend cleanobj
48
49.if !defined(TARGET) || !defined(TARGET_ARCH)
50.error "Both TARGET and TARGET_ARCH must be defined."
51.endif
52
53SRCDIR?=	${.CURDIR}
54LOCALBASE?=	/usr/local
55
56# Cross toolchain changes must be in effect before bsd.compiler.mk
57# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes.
58.if defined(CROSS_TOOLCHAIN)
59.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk"
60CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}"
61.endif
62.if defined(CROSS_TOOLCHAIN_PREFIX)
63CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
64.endif
65
66XCOMPILERS=	CC CXX CPP
67.for COMPILER in ${XCOMPILERS}
68.if defined(CROSS_COMPILER_PREFIX)
69X${COMPILER}?=	${CROSS_COMPILER_PREFIX}${${COMPILER}}
70.else
71X${COMPILER}?=	${${COMPILER}}
72.endif
73.endfor
74# If a full path to an external cross compiler is given, don't build
75# a cross compiler.
76.if ${XCC:N${CCACHE_BIN}:M/*}
77MK_CLANG_BOOTSTRAP=	no
78MK_GCC_BOOTSTRAP=	no
79.endif
80
81MAKEOBJDIRPREFIX?=	/usr/obj
82.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
83OBJTREE=	${MAKEOBJDIRPREFIX}
84.else
85OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
86.endif
87
88# Pull in compiler metadata from buildworld/toolchain if possible to avoid
89# running CC from bsd.compiler.mk.
90.if make(installworld) || make(install) || make(distributeworld) || \
91    make(stageworld)
92.-include "${OBJTREE}${.CURDIR}/compiler-metadata.mk"
93.endif
94
95# Pull in COMPILER_TYPE and COMPILER_FREEBSD_VERSION early.
96.include <bsd.compiler.mk>
97.include "share/mk/src.opts.mk"
98
99# Check if there is a local compiler that can satisfy as an external compiler.
100# Which compiler is expected to be used?
101.if ${MK_CLANG_BOOTSTRAP} == "yes"
102WANT_COMPILER_TYPE=	clang
103.elif ${MK_GCC_BOOTSTRAP} == "yes"
104WANT_COMPILER_TYPE=	gcc
105.else
106WANT_COMPILER_TYPE=
107.endif
108.if !defined(WANT_COMPILER_FREEBSD_VERSION)
109.if ${WANT_COMPILER_TYPE} == "clang"
110WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h
111WANT_COMPILER_FREEBSD_VERSION!= \
112	awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \
113	${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
114WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc
115WANT_COMPILER_VERSION!= \
116	awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
117	${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
118.elif ${WANT_COMPILER_TYPE} == "gcc"
119WANT_COMPILER_FREEBSD_VERSION_FILE= gnu/usr.bin/cc/cc_tools/freebsd-native.h
120WANT_COMPILER_FREEBSD_VERSION!= \
121	awk '$$2 == "FBSD_CC_VER" {printf("%d\n", $$3)}' \
122	${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
123WANT_COMPILER_VERSION_FILE= contrib/gcc/BASE-VER
124WANT_COMPILER_VERSION!= \
125	awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3}' \
126	${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
127.endif
128.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION
129.endif	# !defined(WANT_COMPILER_FREEBSD_VERSION)
130# It needs to be the same revision as we would build for the bootstrap.
131# If the expected vs CC is different then we can't skip.
132# GCC cannot be used for cross-arch yet.  For clang we pass -target later if
133# TARGET_ARCH!=MACHINE_ARCH.
134.if ${MK_SYSTEM_COMPILER} == "yes" && \
135    (${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
136    !make(showconfig) && !make(native-xtools) && !make(xdev*) && \
137    ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE} && \
138    (${COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
139    ${COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \
140    ${COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION}
141# Everything matches, disable the bootstrap compiler.
142MK_CLANG_BOOTSTRAP=	no
143MK_GCC_BOOTSTRAP=	no
144USING_SYSTEM_COMPILER=	yes
145.endif	# ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE}
146USING_SYSTEM_COMPILER?=	no
147TEST_SYSTEM_COMPILER_VARS= \
148	USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \
149	MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP MK_GCC_BOOTSTRAP \
150	WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \
151	WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \
152	CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \
153	COMPILER_FREEBSD_VERSION \
154	LINKER_TYPE LINKER_VERSION
155test-system-compiler: .PHONY
156.for v in ${TEST_SYSTEM_COMPILER_VARS}
157	${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}"
158.endfor
159.if ${USING_SYSTEM_COMPILER} == "yes" && \
160    (make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \
161    make(toolchain) || make(_cross-tools))
162.info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree.  Not bootstrapping a cross-compiler.
163.endif
164
165# For installworld need to ensure that the looked-up compiler metadata is
166# passed along rather than trying to run cc from the restricted
167# STRICTTMPPATH.
168.if ${MK_CLANG_BOOTSTRAP} == "no" && ${MK_GCC_BOOTSTRAP} == "no"
169.if !defined(X_COMPILER_TYPE)
170CROSSENV+=	COMPILER_VERSION=${COMPILER_VERSION} \
171		COMPILER_TYPE=${COMPILER_TYPE} \
172		COMPILER_FEATURES=${COMPILER_FEATURES} \
173		COMPILER_FREEBSD_VERSION=${COMPILER_FREEBSD_VERSION}
174.else
175CROSSENV+=	COMPILER_VERSION=${X_COMPILER_VERSION} \
176		COMPILER_FEATURES=${X_COMPILER_FEATURES} \
177		COMPILER_TYPE=${X_COMPILER_TYPE} \
178		COMPILER_FREEBSD_VERSION=${X_COMPILER_FREEBSD_VERSION}
179.endif
180.endif
181# Store some compiler metadata for use in installworld where we don't
182# want to invoke CC at all.
183_COMPILER_METADATA_VARS=	COMPILER_VERSION \
184				COMPILER_TYPE \
185				COMPILER_FEATURES \
186				COMPILER_FREEBSD_VERSION \
187				LINKER_VERSION \
188				LINKER_TYPE
189compiler-metadata.mk: .PHONY .META
190	@: > ${.TARGET}
191	@echo ".info Using cached compiler metadata from build at $$(hostname) on $$(date)" \
192	    > ${.TARGET}
193.for v in ${_COMPILER_METADATA_VARS}
194	@echo "${v}=${${v}}" >> ${.TARGET}
195.endfor
196	@echo ".export ${_COMPILER_METADATA_VARS}" >> ${.TARGET}
197
198# Handle external binutils.
199.if defined(CROSS_TOOLCHAIN_PREFIX)
200CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
201.endif
202# If we do not have a bootstrap binutils (because the in-tree one does not
203# support the target architecture), provide a default cross-binutils prefix.
204# This allows riscv64 builds, for example, to automatically use the
205# riscv64-binutils port or package.
206.if !make(showconfig)
207.if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \
208    ${MK_LLD_BOOTSTRAP} == "no" && \
209    !defined(CROSS_BINUTILS_PREFIX)
210CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/
211.if !exists(${CROSS_BINUTILS_PREFIX})
212.error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX.
213.endif
214.endif
215.endif
216XBINUTILS=	AS AR LD NM OBJCOPY RANLIB SIZE STRINGS
217.for BINUTIL in ${XBINUTILS}
218.if defined(CROSS_BINUTILS_PREFIX) && \
219    exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}})
220X${BINUTIL}?=	${CROSS_BINUTILS_PREFIX}${${BINUTIL}}
221.else
222X${BINUTIL}?=	${${BINUTIL}}
223.endif
224.endfor
225
226
227# We must do lib/ and libexec/ before bin/ in case of a mid-install error to
228# keep the users system reasonably usable.  For static->dynamic root upgrades,
229# we don't want to install a dynamic binary without rtld and the needed
230# libraries.  More commonly, for dynamic root, we don't want to install a
231# binary that requires a newer library version that hasn't been installed yet.
232# This ordering is not a guarantee though.  The only guarantee of a working
233# system here would require fine-grained ordering of all components based
234# on their dependencies.
235.if !empty(SUBDIR_OVERRIDE)
236SUBDIR=	${SUBDIR_OVERRIDE}
237.else
238SUBDIR=	lib libexec
239.if !defined(NO_ROOT) && (make(installworld) || make(install))
240# Ensure libraries are installed before progressing.
241SUBDIR+=.WAIT
242.endif
243SUBDIR+=bin
244.if ${MK_CDDL} != "no"
245SUBDIR+=cddl
246.endif
247SUBDIR+=gnu include
248.if ${MK_KERBEROS} != "no"
249SUBDIR+=kerberos5
250.endif
251.if ${MK_RESCUE} != "no"
252SUBDIR+=rescue
253.endif
254SUBDIR+=sbin
255.if ${MK_CRYPT} != "no"
256SUBDIR+=secure
257.endif
258.if !defined(NO_SHARE)
259SUBDIR+=share
260.endif
261SUBDIR+=sys usr.bin usr.sbin
262.if ${MK_TESTS} != "no"
263SUBDIR+=	tests
264.endif
265.if ${MK_OFED} != "no"
266SUBDIR+=contrib/ofed
267.endif
268
269# Local directories are last, since it is nice to at least get the base
270# system rebuilt before you do them.
271.for _DIR in ${LOCAL_DIRS}
272.if exists(${.CURDIR}/${_DIR}/Makefile)
273SUBDIR+=	${_DIR}
274.endif
275.endfor
276# Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR
277# of a LOCAL_DIRS directory.  This allows LOCAL_DIRS=foo and
278# LOCAL_LIB_DIRS=foo/lib to behave as expected.
279.for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|}
280_REDUNDANT_LIB_DIRS+=    ${LOCAL_LIB_DIRS:M${_DIR}*}
281.endfor
282.for _DIR in ${LOCAL_LIB_DIRS}
283.if empty(_REDUNDANT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)
284SUBDIR+=	${_DIR}
285.endif
286.endfor
287
288# We must do etc/ last as it hooks into building the man whatis file
289# by calling 'makedb' in share/man.  This is only relevant for
290# install/distribute so they build the whatis file after every manpage is
291# installed.
292.if make(installworld) || make(install)
293SUBDIR+=.WAIT
294.endif
295SUBDIR+=etc
296
297.endif	# !empty(SUBDIR_OVERRIDE)
298
299.if defined(NOCLEAN)
300.warning NOCLEAN option is deprecated. Use NO_CLEAN instead.
301NO_CLEAN=	${NOCLEAN}
302.endif
303.if defined(NO_CLEANDIR)
304CLEANDIR=	clean cleandepend
305.else
306CLEANDIR=	cleandir
307.endif
308
309.if defined(WORLDFAST)
310NO_CLEAN=	t
311NO_OBJ=		t
312.endif
313
314.if ${MK_META_MODE} == "yes"
315# If filemon is used then we can rely on the build being incremental-safe.
316# The .meta files will also track the build command and rebuild should
317# it change.
318.if empty(.MAKE.MODE:Mnofilemon)
319NO_CLEAN=	t
320.endif
321.endif
322.if defined(NO_OBJ) || ${MK_AUTO_OBJ} == "yes"
323NO_OBJ=		t
324NO_KERNELOBJ=	t
325.endif
326.if !defined(NO_OBJ)
327_obj=		obj
328.endif
329
330LOCAL_TOOL_DIRS?=
331PACKAGEDIR?=	${DESTDIR}/${DISTDIR}
332
333.if empty(SHELL:M*csh*)
334BUILDENV_SHELL?=${SHELL}
335.else
336BUILDENV_SHELL?=/bin/sh
337.endif
338
339.if !defined(SVN) || empty(SVN)
340. for _P in /usr/bin /usr/local/bin
341.  for _S in svn svnlite
342.   if exists(${_P}/${_S})
343SVN=   ${_P}/${_S}
344.   endif
345.  endfor
346. endfor
347.endif
348SVNFLAGS?=	-r HEAD
349.if !defined(VCS_REVISION) && empty(VCS_REVISION)
350_VCS_REVISION?=	$$(eval ${SVNVERSION_CMD} ${SRCDIR})
351. if !empty(_VCS_REVISION)
352VCS_REVISION=	$$(echo r${_VCS_REVISION})
353. endif
354.endif
355
356.if !defined(OSRELDATE)
357.if exists(/usr/include/osreldate.h)
358OSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
359		/usr/include/osreldate.h
360.else
361OSRELDATE=	0
362.endif
363.export OSRELDATE
364.endif
365
366# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION.
367.if !defined(_REVISION)
368_REVISION!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V REVISION
369.export _REVISION
370.endif
371.if !defined(_BRANCH)
372_BRANCH!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V BRANCH
373.export _BRANCH
374.endif
375.if !defined(SRCRELDATE)
376SRCRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
377		${SRCDIR}/sys/sys/param.h
378.export SRCRELDATE
379.endif
380.if !defined(VERSION)
381VERSION=	FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
382.export VERSION
383.endif
384
385.if !defined(PKG_VERSION)
386.if ${_BRANCH:MSTABLE*} || ${_BRANCH:MCURRENT*} || ${_BRANCH:MALPHA*}
387TIMENOW=	%Y%m%d%H%M%S
388EXTRA_REVISION=	.s${TIMENOW:gmtime}
389.endif
390.if ${_BRANCH:M*-p*}
391EXTRA_REVISION=	_${_BRANCH:C/.*-p([0-9]+$)/\1/}
392.endif
393PKG_VERSION=	${_REVISION}${EXTRA_REVISION}
394.endif
395
396KNOWN_ARCHES?=	aarch64/arm64 \
397		amd64 \
398		arm \
399		armeb/arm \
400		armv6/arm \
401		i386 \
402		mips \
403		mipsel/mips \
404		mips64el/mips \
405		mipsn32el/mips \
406		mips64/mips \
407		mipsn32/mips \
408		mipshf/mips \
409		mipselhf/mips \
410		mips64elhf/mips \
411		mips64hf/mips \
412		powerpc \
413		powerpc64/powerpc \
414		powerpcspe/powerpc \
415		riscv64/riscv \
416		riscv64sf/riscv \
417		sparc64
418
419.if ${TARGET} == ${TARGET_ARCH}
420_t=		${TARGET}
421.else
422_t=		${TARGET_ARCH}/${TARGET}
423.endif
424.for _t in ${_t}
425.if empty(KNOWN_ARCHES:M${_t})
426.error Unknown target ${TARGET_ARCH}:${TARGET}.
427.endif
428.endfor
429
430.if ${TARGET} == ${MACHINE}
431TARGET_CPUTYPE?=${CPUTYPE}
432.else
433TARGET_CPUTYPE?=
434.endif
435
436.if !empty(TARGET_CPUTYPE)
437_TARGET_CPUTYPE=${TARGET_CPUTYPE}
438.else
439_TARGET_CPUTYPE=dummy
440.endif
441_CPUTYPE!=	MK_AUTO_OBJ=no MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
442		-f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
443.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
444.error CPUTYPE global should be set with ?=.
445.endif
446.if make(buildworld)
447BUILD_ARCH!=	uname -p
448.if ${MACHINE_ARCH} != ${BUILD_ARCH}
449.error To cross-build, set TARGET_ARCH.
450.endif
451.endif
452WORLDTMP=	${OBJTREE}${.CURDIR}/tmp
453BPATH=		${CCACHE_WRAPPER_PATH_PFX}${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin
454XPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin
455STRICTTMPPATH=	${BPATH}:${XPATH}
456TMPPATH=	${STRICTTMPPATH}:${PATH}
457
458#
459# Avoid running mktemp(1) unless actually needed.
460# It may not be functional, e.g., due to new ABI
461# when in the middle of installing over this system.
462#
463.if make(distributeworld) || make(installworld) || make(stageworld)
464INSTALLTMP!=	/usr/bin/mktemp -d -u -t install
465.endif
466
467.if make(stagekernel) || make(distributekernel)
468TAGS+=		kernel
469PACKAGE=	kernel
470.endif
471
472#
473# Building a world goes through the following stages
474#
475# 1. legacy stage [BMAKE]
476#	This stage is responsible for creating compatibility
477#	shims that are needed by the bootstrap-tools,
478#	build-tools and cross-tools stages. These are generally
479#	APIs that tools from one of those three stages need to
480#	build that aren't present on the host.
481# 1. bootstrap-tools stage [BMAKE]
482#	This stage is responsible for creating programs that
483#	are needed for backward compatibility reasons. They
484#	are not built as cross-tools.
485# 2. build-tools stage [TMAKE]
486#	This stage is responsible for creating the object
487#	tree and building any tools that are needed during
488#	the build process. Some programs are listed during
489#	this phase because they build binaries to generate
490#	files needed to build these programs. This stage also
491#	builds the 'build-tools' target rather than 'all'.
492# 3. cross-tools stage [XMAKE]
493#	This stage is responsible for creating any tools that
494#	are needed for building the system. A cross-compiler is one
495#	of them. This differs from build tools in two ways:
496#	1. the 'all' target is built rather than 'build-tools'
497#	2. these tools are installed into TMPPATH for stage 4.
498# 4. world stage [WMAKE]
499#	This stage actually builds the world.
500# 5. install stage (optional) [IMAKE]
501#	This stage installs a previously built world.
502#
503
504BOOTSTRAPPING?=	0
505# Keep these in sync -- see below for special case exception
506MINIMUM_SUPPORTED_OSREL?= 900044
507MINIMUM_SUPPORTED_REL?= 9.1
508
509# Common environment for world related stages
510CROSSENV+=	MAKEOBJDIRPREFIX=${OBJTREE} \
511		MACHINE_ARCH=${TARGET_ARCH} \
512		MACHINE=${TARGET} \
513		CPUTYPE=${TARGET_CPUTYPE}
514.if ${MK_META_MODE} != "no"
515# Don't rebuild build-tools targets during normal build.
516CROSSENV+=	BUILD_TOOLS_META=.NOMETA
517.endif
518.if defined(TARGET_CFLAGS)
519CROSSENV+=	${TARGET_CFLAGS}
520.endif
521
522# bootstrap-tools stage
523BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
524		TOOLS_PREFIX=${WORLDTMP} \
525		PATH=${BPATH}:${PATH} \
526		WORLDTMP=${WORLDTMP} \
527		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
528# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile
529BSARGS= 	DESTDIR= \
530		BOOTSTRAPPING=${OSRELDATE} \
531		BWPHASE=${.TARGET:C,^_,,} \
532		SSP_CFLAGS= \
533		MK_HTML=no NO_LINT=yes MK_MAN=no \
534		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
535		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
536		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
537		MK_LLDB=no MK_TESTS=no \
538		MK_INCLUDES=yes
539
540BMAKE=		MAKEOBJDIRPREFIX=${WORLDTMP} \
541		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
542		${BSARGS}
543
544# build-tools stage
545TMAKE=		MAKEOBJDIRPREFIX=${OBJTREE} \
546		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
547		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
548		DESTDIR= \
549		BOOTSTRAPPING=${OSRELDATE} \
550		BWPHASE=${.TARGET:C,^_,,} \
551		SSP_CFLAGS= \
552		-DNO_LINT \
553		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
554		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
555		MK_LLDB=no MK_TESTS=no
556
557# cross-tools stage
558XMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
559		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
560		MK_GDB=no MK_LLD_IS_LD=${MK_LLD_BOOTSTRAP} MK_TESTS=no
561
562# kernel-tools stage
563KTMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
564		PATH=${BPATH}:${PATH} \
565		WORLDTMP=${WORLDTMP}
566KTMAKE=		TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \
567		${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
568		DESTDIR= \
569		BOOTSTRAPPING=${OSRELDATE} \
570		SSP_CFLAGS= \
571		MK_HTML=no -DNO_LINT MK_MAN=no \
572		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
573		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no
574
575# world stage
576WMAKEENV=	${CROSSENV} \
577		INSTALL="sh ${.CURDIR}/tools/install.sh" \
578		PATH=${TMPPATH} \
579		SYSROOT=${WORLDTMP}
580
581# make hierarchy
582HMAKE=		PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
583.if defined(NO_ROOT)
584HMAKE+=		PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
585.endif
586
587CROSSENV+=	CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCXXFLAGS} ${XCFLAGS}" \
588		CPP="${XCPP} ${XCFLAGS}" \
589		AS="${XAS}" AR="${XAR}" LD="${XLD}" LLVM_LINK="${XLLVM_LINK}" \
590		NM=${XNM} OBJCOPY="${XOBJCOPY}" \
591		RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \
592		SIZE="${XSIZE}"
593
594.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
595# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
596# directory, but the compiler will look in the right place for its
597# tools so we don't need to tell it where to look.
598BFLAGS+=	-B${CROSS_BINUTILS_PREFIX}
599.endif
600
601
602# The internal bootstrap compiler has a default sysroot set by TOOLS_PREFIX
603# and target set by TARGET/TARGET_ARCH.  However, there are several needs to
604# always pass an explicit --sysroot and -target.
605# - External compiler needs sysroot and target flags.
606# - External ld needs sysroot.
607# - To be clear about the use of a sysroot when using the internal compiler.
608# - Easier debugging.
609# - Allowing WITH_SYSTEM_COMPILER+WITH_META_MODE to work together due to
610#   the flip-flopping build command when sometimes using external and
611#   sometimes using internal.
612# - Allow using lld which has no support for default paths.
613.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX})
614BFLAGS+=	-B${WORLDTMP}/usr/bin
615.endif
616.if ${TARGET} == "arm"
617.if ${TARGET_ARCH:Marmv6*} != "" && ${TARGET_CPUTYPE:M*soft*} == ""
618TARGET_ABI=	gnueabihf
619.else
620TARGET_ABI=	gnueabi
621.endif
622.endif
623.if ${WANT_COMPILER_TYPE} == gcc || \
624    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
625# GCC requires -isystem and -L when using a cross-compiler.  --sysroot
626# won't set header path and -L is used to ensure the base library path
627# is added before the port PREFIX library path.
628XCFLAGS+=	-isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib
629# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
630# combined with --sysroot.
631XCFLAGS+=	-B${WORLDTMP}/usr/lib
632# Force using libc++ for external GCC.
633.if ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800
634XCXXFLAGS+=	-isystem ${WORLDTMP}/usr/include/c++/v1 -std=c++11 \
635		-nostdinc++
636.endif
637.elif ${WANT_COMPILER_TYPE} == clang || \
638    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang)
639TARGET_ABI?=	unknown
640TARGET_TRIPLE?=	${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd12.0
641XCFLAGS+=	-target ${TARGET_TRIPLE}
642.endif
643XCFLAGS+=	--sysroot=${WORLDTMP}
644
645.if !empty(BFLAGS)
646XCFLAGS+=	${BFLAGS}
647.endif
648
649.if ${MK_LIB32} != "no" && (${TARGET_ARCH} == "amd64" || \
650    ${TARGET_ARCH} == "powerpc64" || ${TARGET_ARCH:Mmips64*} != "")
651LIBCOMPAT= 32
652.include "Makefile.libcompat"
653.elif ${MK_LIBSOFT} != "no" && ${TARGET_ARCH} == "armv6"
654LIBCOMPAT= SOFT
655.include "Makefile.libcompat"
656.endif
657
658# META_MODE normally ignores host file changes since every build updates
659# timestamps (see NO_META_IGNORE_HOST in sys.mk).  There are known times
660# when the ABI breaks though that we want to force rebuilding WORLDTMP
661# to get updated host tools.
662.if ${MK_META_MODE} == "yes" && defined(NO_CLEAN) && \
663    !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) && \
664    !make(showconfig)
665# r318736 - ino64 major ABI breakage
666META_MODE_BAD_ABI_VERS+=	1200031
667
668.if !defined(OBJDIR_HOST_OSRELDATE)
669.if exists(${OBJTREE}${.CURDIR}/host-osreldate.h)
670OBJDIR_HOST_OSRELDATE!=	\
671    awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
672    ${OBJTREE}${.CURDIR}/host-osreldate.h
673.else
674OBJDIR_HOST_OSRELDATE=	0
675.endif
676.export OBJDIR_HOST_OSRELDATE
677.endif
678
679# Note that this logic is the opposite of normal BOOTSTRAP handling.  We want
680# to compare the WORLDTMP's OSRELDATE to the host's OSRELDATE.  If the WORLDTMP
681# is older than the ABI-breakage OSRELDATE of the HOST then we rebuild.
682.for _ver in ${META_MODE_BAD_ABI_VERS}
683.if ${OSRELDATE} >= ${_ver} && ${OBJDIR_HOST_OSRELDATE} < ${_ver}
684_meta_mode_need_rebuild=	${_ver}
685.endif
686.endfor
687.if defined(_meta_mode_need_rebuild)
688.info META_MODE: Rebuilding host tools due to ABI breakage in __FreeBSD_version ${_meta_mode_need_rebuild}.
689NO_META_IGNORE_HOST_HEADERS=	1
690.export NO_META_IGNORE_HOST_HEADERS
691.endif
692.endif
693# This is only used for META_MODE+filemon to track what the oldest
694# __FreeBSD_version is in WORLDTMP.  This purposely does NOT have
695# a make dependency on /usr/include/osreldate.h as the file should
696# only be copied when it is missing or meta mode determines it has changed.
697# Since host files are normally ignored without NO_META_IGNORE_HOST
698# the file will never be updated unless that flag is specified.  This
699# allows tracking the oldest osreldate to force rebuilds via
700# META_MODE_BADABI_REVS above.
701host-osreldate.h: # DO NOT ADD /usr/include/osreldate.h here
702	@cp -f /usr/include/osreldate.h ${.TARGET}
703
704WMAKE=		${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
705		BWPHASE=${.TARGET:C,^_,,} \
706		DESTDIR=${WORLDTMP}
707
708IMAKEENV=	${CROSSENV}
709IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1 \
710		${IMAKE_INSTALL} ${IMAKE_MTREE}
711.if empty(.MAKEFLAGS:M-n)
712IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
713		LD_LIBRARY_PATH=${INSTALLTMP} \
714		PATH_LOCALE=${INSTALLTMP}/locale
715IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
716.else
717IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
718.endif
719.if defined(DB_FROM_SRC)
720INSTALLFLAGS+=	-N ${.CURDIR}/etc
721MTREEFLAGS+=	-N ${.CURDIR}/etc
722.endif
723_INSTALL_DDIR=	${DESTDIR}/${DISTDIR}
724INSTALL_DDIR=	${_INSTALL_DDIR:S://:/:g:C:/$::}
725.if defined(NO_ROOT)
726METALOG?=	${DESTDIR}/${DISTDIR}/METALOG
727METALOG:=	${METALOG:C,//+,/,g}
728IMAKE+=		-DNO_ROOT METALOG=${METALOG}
729INSTALLFLAGS+=	-U -M ${METALOG} -D ${INSTALL_DDIR}
730MTREEFLAGS+=	-W
731.endif
732.if defined(BUILD_PKGS)
733INSTALLFLAGS+=	-h sha256
734.endif
735.if defined(DB_FROM_SRC) || defined(NO_ROOT)
736IMAKE_INSTALL=	INSTALL="install ${INSTALLFLAGS}"
737IMAKE_MTREE=	MTREE_CMD="mtree ${MTREEFLAGS}"
738.endif
739
740# kernel stage
741KMAKEENV=	${WMAKEENV:NSYSROOT=*}
742KMAKE=		${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
743
744#
745# buildworld
746#
747# Attempt to rebuild the entire system, with reasonable chance of
748# success, regardless of how old your existing system is.
749#
750_worldtmp: .PHONY
751.if ${.CURDIR:C/[^,]//g} != ""
752#	The m4 build of sendmail files doesn't like it if ',' is used
753#	anywhere in the path of it's files.
754	@echo
755	@echo "*** Error: path to source tree contains a comma ','"
756	@echo
757	false
758.endif
759	@echo
760	@echo "--------------------------------------------------------------"
761	@echo ">>> Rebuilding the temporary build tree"
762	@echo "--------------------------------------------------------------"
763.if !defined(NO_CLEAN)
764	rm -rf ${WORLDTMP}
765.if defined(LIBCOMPAT)
766	rm -rf ${LIBCOMPATTMP}
767.endif
768.else
769.if exists(${WORLDTMP})
770	@echo ">>> Deleting stale files in build tree..."
771	${_+_}cd ${.CURDIR}; ${WMAKE} -DBATCH_DELETE_OLD_FILES \
772	    delete-old delete-old-libs >/dev/null
773.endif
774.if defined(LIBCOMPAT) && exists(${LIBCOMPATTMP})
775	${_+_}cd ${.CURDIR}; ${WMAKE} -DBATCH_DELETE_OLD_FILES \
776	    DESTDIR=${LIBCOMPATTMP} \
777	    delete-old delete-old-libs >/dev/null
778.endif
779	rm -rf ${WORLDTMP}/legacy/usr/include
780.if ${USING_SYSTEM_COMPILER} == "yes"
781.for cc in cc c++
782	if [ -x ${WORLDTMP}/usr/bin/${cc} ]; then \
783		inum=$$(stat -f %i ${WORLDTMP}/usr/bin/${cc}); \
784		find ${WORLDTMP}/usr/bin -inum $${inum} -delete; \
785	fi
786.endfor
787.endif	# ${USING_SYSTEM_COMPILER} == "yes"
788
789# Our current approach to dependency tracking cannot cope with certain source
790# tree changes, particularly with respect to removing source files and
791# replacing generated files.  Handle these cases here in an ad-hoc fashion.
792#
793# Syscall stubs rewritten in C
794# Date      SVN Rev  Syscalls
795# 20160829  r305012  ptrace
796# 20170624  r320278  fstat fstatat fstatfs getdirentries getfsstat statfs
797.for f in fstat fstatat fstatfs getdirentries getfsstat ptrace statfs
798.if exists(${OBJTREE}${.CURDIR}/lib/libc/.depend.${f}.o)
799	@if egrep -qw '${f}\.[sS]' \
800	    ${OBJTREE}${.CURDIR}/lib/libc/.depend.${f}.o; then \
801		echo Removing stale dependencies for ${f} syscall wrappers; \
802		rm -f ${OBJTREE}${.CURDIR}/lib/libc/.depend.${f}.* \
803		   ${OBJTREE}${.CURDIR}/world32/${.CURDIR}/lib/libc/.depend.${f}.*; \
804	fi
805.endif
806.endfor
807# 20170607 remove stale dependencies for utimens* wrappers removed in r319663
808.for f in futimens utimensat
809.if exists(${OBJTREE}${.CURDIR}/lib/libc/.depend.${f}.o)
810	@if egrep -q '/${f}.c' \
811	    ${OBJTREE}${.CURDIR}/lib/libc/.depend.${f}.o; then \
812		echo Removing stale dependencies for ${f} syscall wrappers; \
813		rm -f ${OBJTREE}${.CURDIR}/lib/libc/.depend.${f}.* \
814		   ${OBJTREE}${.CURDIR}/world32/${.CURDIR}/lib/libc/.depend.${f}.*; \
815	fi
816.endif
817.endfor
818# 20170523 remove stale generated asm files for functions which are no longer
819# syscalls after r302092 (pipe) and r318736 (others)
820.for f in getdents lstat mknod pipe stat
821.if exists(${OBJTREE}${.CURDIR}/lib/libc/${f}.s) || \
822    exists(${OBJTREE}${.CURDIR}/lib/libc/${f}.S)
823	@echo Removing stale generated ${f} syscall files
824	@rm -f ${OBJTREE}${.CURDIR}/lib/libc/${f}.* \
825	    ${OBJTREE}${.CURDIR}/lib/libc/.depend.${f}.* \
826	    ${OBJTREE}${.CURDIR}/world32/${.CURDIR}/lib/libc/${f}.* \
827	    ${OBJTREE}${.CURDIR}/world32/${.CURDIR}/lib/libc/.depend.${f}.*
828.endif
829.endfor
830
831.endif	# !defined(NO_CLEAN)
832
833.for _dir in \
834    lib lib/casper usr legacy/bin legacy/usr
835	mkdir -p ${WORLDTMP}/${_dir}
836.endfor
837	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
838	    -p ${WORLDTMP}/legacy/usr >/dev/null
839	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
840	    -p ${WORLDTMP}/legacy/usr/include >/dev/null
841	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
842	    -p ${WORLDTMP}/usr >/dev/null
843	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
844	    -p ${WORLDTMP}/usr/include >/dev/null
845	ln -sf ${.CURDIR}/sys ${WORLDTMP}
846.if ${MK_DEBUG_FILES} != "no"
847	# We could instead disable debug files for these build stages
848	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
849	    -p ${WORLDTMP}/legacy/usr/lib >/dev/null
850	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
851	    -p ${WORLDTMP}/usr/lib >/dev/null
852.endif
853.if defined(LIBCOMPAT)
854	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
855	    -p ${WORLDTMP}/usr >/dev/null
856.if ${MK_DEBUG_FILES} != "no"
857	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
858	    -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null
859	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
860	    -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null
861.endif
862.endif
863.if ${MK_TESTS} != "no"
864	mkdir -p ${WORLDTMP}${TESTSBASE}
865	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
866	    -p ${WORLDTMP}${TESTSBASE} >/dev/null
867.if ${MK_DEBUG_FILES} != "no"
868	mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE}
869	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
870	    -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null
871.endif
872.endif
873.for _mtree in ${LOCAL_MTREE}
874	mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
875.endfor
876_legacy:
877	@echo
878	@echo "--------------------------------------------------------------"
879	@echo ">>> stage 1.1: legacy release compatibility shims"
880	@echo "--------------------------------------------------------------"
881	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
882_bootstrap-tools:
883	@echo
884	@echo "--------------------------------------------------------------"
885	@echo ">>> stage 1.2: bootstrap tools"
886	@echo "--------------------------------------------------------------"
887	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
888_cleanobj:
889.if !defined(NO_CLEAN)
890	@echo
891	@echo "--------------------------------------------------------------"
892	@echo ">>> stage 2.1: cleaning up the object tree"
893	@echo "--------------------------------------------------------------"
894	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR}
895.if defined(LIBCOMPAT)
896	${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} -f Makefile.inc1 ${CLEANDIR}
897.endif
898.endif
899_obj:
900	@echo
901	@echo "--------------------------------------------------------------"
902	@echo ">>> stage 2.2: rebuilding the object tree"
903	@echo "--------------------------------------------------------------"
904	${_+_}cd ${.CURDIR}; ${WMAKE} obj
905_build-tools:
906	@echo
907	@echo "--------------------------------------------------------------"
908	@echo ">>> stage 2.3: build tools"
909	@echo "--------------------------------------------------------------"
910	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
911_cross-tools:
912	@echo
913	@echo "--------------------------------------------------------------"
914	@echo ">>> stage 3: cross tools"
915	@echo "--------------------------------------------------------------"
916	@rm -f ${OBJTREE}${.CURDIR}/compiler-metadata.mk
917	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
918	${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
919_build-metadata:
920	@echo
921	@echo "--------------------------------------------------------------"
922	@echo ">>> stage 3.1: recording build metadata"
923	@echo "--------------------------------------------------------------"
924	${_+_}cd ${.CURDIR}; ${WMAKE} compiler-metadata.mk
925	${_+_}cd ${.CURDIR}; ${WMAKE} host-osreldate.h
926_includes:
927	@echo
928	@echo "--------------------------------------------------------------"
929	@echo ">>> stage 4.1: building includes"
930	@echo "--------------------------------------------------------------"
931# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need
932# headers from default SUBDIR.  Do SUBDIR_OVERRIDE includes last.
933	${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \
934	    MK_INCLUDES=yes includes
935.if !empty(SUBDIR_OVERRIDE) && make(buildworld)
936	${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes
937.endif
938_libraries:
939	@echo
940	@echo "--------------------------------------------------------------"
941	@echo ">>> stage 4.2: building libraries"
942	@echo "--------------------------------------------------------------"
943	${_+_}cd ${.CURDIR}; \
944	    ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
945	    MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} libraries
946everything: .PHONY
947	@echo
948	@echo "--------------------------------------------------------------"
949	@echo ">>> stage 4.3: building everything"
950	@echo "--------------------------------------------------------------"
951	${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all
952
953WMAKE_TGTS=
954.if !defined(WORLDFAST)
955WMAKE_TGTS+=	_worldtmp _legacy
956.if empty(SUBDIR_OVERRIDE)
957WMAKE_TGTS+=	_bootstrap-tools
958.endif
959WMAKE_TGTS+=	_cleanobj
960.if !defined(NO_OBJ)
961WMAKE_TGTS+=	_obj
962.endif
963WMAKE_TGTS+=	_build-tools _cross-tools
964WMAKE_TGTS+=	_build-metadata
965WMAKE_TGTS+=	_includes
966.endif
967.if !defined(NO_LIBS)
968WMAKE_TGTS+=	_libraries
969.endif
970WMAKE_TGTS+=	everything
971.if defined(LIBCOMPAT) && empty(SUBDIR_OVERRIDE)
972WMAKE_TGTS+=	build${libcompat}
973.endif
974
975buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY
976.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
977
978buildworld_prologue: .PHONY
979	@echo "--------------------------------------------------------------"
980	@echo ">>> World build started on `LC_ALL=C date`"
981	@echo "--------------------------------------------------------------"
982
983buildworld_epilogue: .PHONY
984	@echo
985	@echo "--------------------------------------------------------------"
986	@echo ">>> World build completed on `LC_ALL=C date`"
987	@echo "--------------------------------------------------------------"
988
989#
990# We need to have this as a target because the indirection between Makefile
991# and Makefile.inc1 causes the correct PATH to be used, rather than a
992# modification of the current environment's PATH.  In addition, we need
993# to quote multiword values.
994#
995buildenvvars: .PHONY
996	@echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@}
997
998.if ${.TARGETS:Mbuildenv}
999.if ${.MAKEFLAGS:M-j}
1000.error The buildenv target is incompatible with -j
1001.endif
1002.endif
1003BUILDENV_DIR?=	${.CURDIR}
1004buildenv: .PHONY
1005	@echo Entering world for ${TARGET_ARCH}:${TARGET}
1006.if ${BUILDENV_SHELL:M*zsh*}
1007	@echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE}
1008.endif
1009	@cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \
1010	    || true
1011
1012TOOLCHAIN_TGTS=	${WMAKE_TGTS:Neverything:Nbuild${libcompat}}
1013toolchain: ${TOOLCHAIN_TGTS} .PHONY
1014kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries} .PHONY
1015
1016#
1017# installcheck
1018#
1019# Checks to be sure system is ready for installworld/installkernel.
1020#
1021installcheck: _installcheck_world _installcheck_kernel .PHONY
1022_installcheck_world: .PHONY
1023_installcheck_kernel: .PHONY
1024
1025#
1026# Require DESTDIR to be set if installing for a different architecture or
1027# using the user/group database in the source tree.
1028#
1029.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
1030    defined(DB_FROM_SRC)
1031.if !make(distributeworld)
1032_installcheck_world: __installcheck_DESTDIR
1033_installcheck_kernel: __installcheck_DESTDIR
1034__installcheck_DESTDIR: .PHONY
1035.if !defined(DESTDIR) || empty(DESTDIR)
1036	@echo "ERROR: Please set DESTDIR!"; \
1037	false
1038.endif
1039.endif
1040.endif
1041
1042.if !defined(DB_FROM_SRC)
1043#
1044# Check for missing UIDs/GIDs.
1045#
1046CHECK_UIDS=	auditdistd
1047CHECK_GIDS=	audit
1048.if ${MK_SENDMAIL} != "no"
1049CHECK_UIDS+=	smmsp
1050CHECK_GIDS+=	smmsp
1051.endif
1052.if ${MK_PF} != "no"
1053CHECK_UIDS+=	proxy
1054CHECK_GIDS+=	proxy authpf
1055.endif
1056.if ${MK_UNBOUND} != "no"
1057CHECK_UIDS+=	unbound
1058CHECK_GIDS+=	unbound
1059.endif
1060_installcheck_world: __installcheck_UGID
1061__installcheck_UGID: .PHONY
1062.for uid in ${CHECK_UIDS}
1063	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
1064		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
1065		false; \
1066	fi
1067.endfor
1068.for gid in ${CHECK_GIDS}
1069	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
1070		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
1071		false; \
1072	fi
1073.endfor
1074.endif
1075#
1076# If installing over the running system (DESTDIR is / or unset) and the install
1077# includes rescue, try running rescue from the objdir as a sanity check.  If
1078# rescue is not functional (e.g., because it depends on a system call not
1079# supported by the currently running kernel), abort the installation.
1080#
1081.if !make(distributeworld) && ${MK_RESCUE} != "no" && \
1082    (empty(DESTDIR) || ${DESTDIR} == "/") && empty(BYPASS_INSTALLCHECK_SH)
1083_installcheck_world: __installcheck_sh_check
1084__installcheck_sh_check: .PHONY
1085	@if [ "`${OBJTREE}${.CURDIR}/rescue/rescue/rescue sh -c 'echo OK'`" != \
1086	    OK ]; then \
1087		echo "rescue/sh check failed, installation aborted" >&2; \
1088		false; \
1089	fi
1090.endif
1091
1092#
1093# Required install tools to be saved in a scratch dir for safety.
1094#
1095.if ${MK_ZONEINFO} != "no"
1096_zoneinfo=	zic tzsetup
1097.endif
1098
1099ITOOLS=	[ awk cap_mkdb cat chflags chmod chown cmp cp \
1100	date echo egrep find grep id install ${_install-info} \
1101	ln make mkdir mtree mv pwd_mkdb \
1102	rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \
1103	${LOCAL_ITOOLS}
1104
1105# Needed for share/man
1106.if ${MK_MAN_UTILS} != "no"
1107ITOOLS+=makewhatis
1108.endif
1109
1110#
1111# distributeworld
1112#
1113# Distributes everything compiled by a `buildworld'.
1114#
1115# installworld
1116#
1117# Installs everything compiled by a 'buildworld'.
1118#
1119
1120# Non-base distributions produced by the base system
1121EXTRA_DISTRIBUTIONS=	doc
1122.if defined(LIBCOMPAT)
1123EXTRA_DISTRIBUTIONS+=	lib${libcompat}
1124.endif
1125.if ${MK_TESTS} != "no"
1126EXTRA_DISTRIBUTIONS+=	tests
1127.endif
1128
1129DEBUG_DISTRIBUTIONS=
1130.if ${MK_DEBUG_FILES} != "no"
1131DEBUG_DISTRIBUTIONS+=	base ${EXTRA_DISTRIBUTIONS:S,doc,,:S,tests,,}
1132.endif
1133
1134MTREE_MAGIC?=	mtree 2.0
1135
1136distributeworld installworld stageworld: _installcheck_world .PHONY
1137	mkdir -p ${INSTALLTMP}
1138	progs=$$(for prog in ${ITOOLS}; do \
1139		if progpath=`which $$prog`; then \
1140			echo $$progpath; \
1141		else \
1142			echo "Required tool $$prog not found in PATH." >&2; \
1143			exit 1; \
1144		fi; \
1145	    done); \
1146	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
1147	    while read line; do \
1148		set -- $$line; \
1149		if [ "$$2 $$3" != "not found" ]; then \
1150			echo $$2; \
1151		else \
1152			echo "Required library $$1 not found." >&2; \
1153			exit 1; \
1154		fi; \
1155	    done); \
1156	cp $$libs $$progs ${INSTALLTMP}
1157	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
1158.if defined(NO_ROOT)
1159	-mkdir -p ${METALOG:H}
1160	echo "#${MTREE_MAGIC}" > ${METALOG}
1161.endif
1162.if make(distributeworld)
1163.for dist in ${EXTRA_DISTRIBUTIONS}
1164	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
1165	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1166	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
1167	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1168	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
1169	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1170	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
1171.if ${MK_DEBUG_FILES} != "no"
1172	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1173	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
1174.endif
1175.if defined(LIBCOMPAT)
1176	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
1177	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
1178.if ${MK_DEBUG_FILES} != "no"
1179	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
1180	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null
1181.endif
1182.endif
1183.if ${MK_TESTS} != "no" && ${dist} == "tests"
1184	-mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
1185	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1186	    -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
1187.if ${MK_DEBUG_FILES} != "no"
1188	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1189	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null
1190.endif
1191.endif
1192.if defined(NO_ROOT)
1193	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
1194	    sed -e 's#^\./#./${dist}/#' >> ${METALOG}
1195	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
1196	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1197	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
1198	    sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
1199.if defined(LIBCOMPAT)
1200	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \
1201	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
1202.endif
1203.endif
1204.endfor
1205	-mkdir ${DESTDIR}/${DISTDIR}/base
1206	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1207	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
1208	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
1209	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
1210.endif
1211	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
1212	    ${IMAKEENV} rm -rf ${INSTALLTMP}
1213.if make(distributeworld)
1214.for dist in ${EXTRA_DISTRIBUTIONS}
1215	find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete
1216.endfor
1217.if defined(NO_ROOT)
1218.for dist in base ${EXTRA_DISTRIBUTIONS}
1219	@# For each file that exists in this dist, print the corresponding
1220	@# line from the METALOG.  This relies on the fact that
1221	@# a line containing only the filename will sort immediately before
1222	@# the relevant mtree line.
1223	cd ${DESTDIR}/${DISTDIR}; \
1224	find ./${dist} | sort -u ${METALOG} - | \
1225	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1226	${DESTDIR}/${DISTDIR}/${dist}.meta
1227.endfor
1228.for dist in ${DEBUG_DISTRIBUTIONS}
1229	@# For each file that exists in this dist, print the corresponding
1230	@# line from the METALOG.  This relies on the fact that
1231	@# a line containing only the filename will sort immediately before
1232	@# the relevant mtree line.
1233	cd ${DESTDIR}/${DISTDIR}; \
1234	find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
1235	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
1236	${DESTDIR}/${DISTDIR}/${dist}.debug.meta
1237.endfor
1238.endif
1239.endif
1240
1241packageworld: .PHONY
1242.for dist in base ${EXTRA_DISTRIBUTIONS}
1243.if defined(NO_ROOT)
1244	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1245	    tar cvf - --exclude usr/lib/debug \
1246	    @${DESTDIR}/${DISTDIR}/${dist}.meta | \
1247	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1248.else
1249	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1250	    tar cvf - --exclude usr/lib/debug . | \
1251	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
1252.endif
1253.endfor
1254
1255.for dist in ${DEBUG_DISTRIBUTIONS}
1256. if defined(NO_ROOT)
1257	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1258	    tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
1259	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1260. else
1261	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
1262	    tar cvLf - usr/lib/debug | \
1263	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
1264. endif
1265.endfor
1266
1267#
1268# reinstall
1269#
1270# If you have a build server, you can NFS mount the source and obj directories
1271# and do a 'make reinstall' on the *client* to install new binaries from the
1272# most recent server build.
1273#
1274restage reinstall: .MAKE .PHONY
1275	@echo "--------------------------------------------------------------"
1276	@echo ">>> Making hierarchy"
1277	@echo "--------------------------------------------------------------"
1278	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1279	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
1280.if make(restage)
1281	@echo "--------------------------------------------------------------"
1282	@echo ">>> Making distribution"
1283	@echo "--------------------------------------------------------------"
1284	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
1285	    LOCAL_MTREE=${LOCAL_MTREE:Q} distribution
1286.endif
1287	@echo
1288	@echo "--------------------------------------------------------------"
1289	@echo ">>> Installing everything"
1290	@echo "--------------------------------------------------------------"
1291	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
1292.if defined(LIBCOMPAT)
1293	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
1294.endif
1295
1296redistribute: .MAKE .PHONY
1297	@echo "--------------------------------------------------------------"
1298	@echo ">>> Distributing everything"
1299	@echo "--------------------------------------------------------------"
1300	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
1301.if defined(LIBCOMPAT)
1302	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \
1303	    DISTRIBUTION=lib${libcompat}
1304.endif
1305
1306distrib-dirs distribution: .MAKE .PHONY
1307	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1308	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1309.if make(distribution)
1310	${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1311		${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1312		METALOG=${METALOG} MK_TESTS=no installconfig
1313.endif
1314
1315#
1316# buildkernel and installkernel
1317#
1318# Which kernels to build and/or install is specified by setting
1319# KERNCONF. If not defined a GENERIC kernel is built/installed.
1320# Only the existing (depending TARGET) config files are used
1321# for building kernels and only the first of these is designated
1322# as the one being installed.
1323#
1324# Note that we have to use TARGET instead of TARGET_ARCH when
1325# we're in kernel-land. Since only TARGET_ARCH is (expected) to
1326# be set to cross-build, we have to make sure TARGET is set
1327# properly.
1328
1329.if defined(KERNFAST)
1330NO_KERNELCLEAN=	t
1331NO_KERNELCONFIG=	t
1332NO_KERNELOBJ=		t
1333# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1334.if !defined(KERNCONF) && ${KERNFAST} != "1"
1335KERNCONF=${KERNFAST}
1336.endif
1337.endif
1338.if ${TARGET_ARCH} == "powerpc64"
1339KERNCONF?=	GENERIC64
1340.else
1341KERNCONF?=	GENERIC
1342.endif
1343INSTKERNNAME?=	kernel
1344
1345KERNSRCDIR?=	${.CURDIR}/sys
1346KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
1347KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
1348KERNCONFDIR?=	${KRNLCONFDIR}
1349
1350BUILDKERNELS=
1351INSTALLKERNEL=
1352.if defined(NO_INSTALLKERNEL)
1353# All of the BUILDKERNELS loops start at index 1.
1354BUILDKERNELS+= dummy
1355.endif
1356.for _kernel in ${KERNCONF}
1357.if exists(${KERNCONFDIR}/${_kernel})
1358BUILDKERNELS+=	${_kernel}
1359.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1360INSTALLKERNEL= ${_kernel}
1361.endif
1362.endif
1363.endfor
1364
1365${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1366
1367#
1368# buildkernel
1369#
1370# Builds all kernels defined by BUILDKERNELS.
1371#
1372buildkernel: .MAKE .PHONY
1373.if empty(BUILDKERNELS:Ndummy)
1374	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1375	false
1376.endif
1377	@echo
1378.for _kernel in ${BUILDKERNELS:Ndummy}
1379	@echo "--------------------------------------------------------------"
1380	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1381	@echo "--------------------------------------------------------------"
1382	@echo "===> ${_kernel}"
1383	mkdir -p ${KRNLOBJDIR}
1384.if !defined(NO_KERNELCONFIG)
1385	@echo
1386	@echo "--------------------------------------------------------------"
1387	@echo ">>> stage 1: configuring the kernel"
1388	@echo "--------------------------------------------------------------"
1389	cd ${KRNLCONFDIR}; \
1390		PATH=${TMPPATH} \
1391		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1392			-I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1393.endif
1394.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1395	@echo
1396	@echo "--------------------------------------------------------------"
1397	@echo ">>> stage 2.1: cleaning up the object tree"
1398	@echo "--------------------------------------------------------------"
1399	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1400.endif
1401.if !defined(NO_KERNELOBJ)
1402	@echo
1403	@echo "--------------------------------------------------------------"
1404	@echo ">>> stage 2.2: rebuilding the object tree"
1405	@echo "--------------------------------------------------------------"
1406	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1407.endif
1408	@echo
1409	@echo "--------------------------------------------------------------"
1410	@echo ">>> stage 2.3: build tools"
1411	@echo "--------------------------------------------------------------"
1412	${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1413	@echo
1414	@echo "--------------------------------------------------------------"
1415	@echo ">>> stage 3.1: building everything"
1416	@echo "--------------------------------------------------------------"
1417	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1418	@echo "--------------------------------------------------------------"
1419	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1420	@echo "--------------------------------------------------------------"
1421.endfor
1422
1423NO_INSTALLEXTRAKERNELS?=	yes
1424
1425#
1426# installkernel, etc.
1427#
1428# Install the kernel defined by INSTALLKERNEL
1429#
1430installkernel installkernel.debug \
1431reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY
1432.if !defined(NO_INSTALLKERNEL)
1433.if empty(INSTALLKERNEL)
1434	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1435	false
1436.endif
1437	@echo "--------------------------------------------------------------"
1438	@echo ">>> Installing kernel ${INSTALLKERNEL}"
1439	@echo "--------------------------------------------------------------"
1440	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1441	    ${CROSSENV} PATH=${TMPPATH} \
1442	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1443.endif
1444.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1445.for _kernel in ${BUILDKERNELS:[2..-1]}
1446	@echo "--------------------------------------------------------------"
1447	@echo ">>> Installing kernel ${_kernel}"
1448	@echo "--------------------------------------------------------------"
1449	cd ${KRNLOBJDIR}/${_kernel}; \
1450	    ${CROSSENV} PATH=${TMPPATH} \
1451	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1452.endfor
1453.endif
1454
1455distributekernel distributekernel.debug: .PHONY
1456.if !defined(NO_INSTALLKERNEL)
1457.if empty(INSTALLKERNEL)
1458	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1459	false
1460.endif
1461	mkdir -p ${DESTDIR}/${DISTDIR}
1462.if defined(NO_ROOT)
1463	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1464.endif
1465	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1466	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1467	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1468	    DESTDIR=${INSTALL_DDIR}/kernel \
1469	    ${.TARGET:S/distributekernel/install/}
1470.if defined(NO_ROOT)
1471	@sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1472	    ${DESTDIR}/${DISTDIR}/kernel.meta
1473.endif
1474.endif
1475.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1476.for _kernel in ${BUILDKERNELS:[2..-1]}
1477.if defined(NO_ROOT)
1478	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1479.endif
1480	cd ${KRNLOBJDIR}/${_kernel}; \
1481	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1482	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1483	    KERNEL=${INSTKERNNAME}.${_kernel} \
1484	    DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1485	    ${.TARGET:S/distributekernel/install/}
1486.if defined(NO_ROOT)
1487	@sed -e "s|^./kernel.${_kernel}|.|" \
1488	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1489	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1490.endif
1491.endfor
1492.endif
1493
1494packagekernel: .PHONY
1495.if defined(NO_ROOT)
1496.if !defined(NO_INSTALLKERNEL)
1497	cd ${DESTDIR}/${DISTDIR}/kernel; \
1498	    tar cvf - --exclude '*.debug' \
1499	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1500	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1501.endif
1502.if ${MK_DEBUG_FILES} != "no"
1503	cd ${DESTDIR}/${DISTDIR}/kernel; \
1504	    tar cvf - --include '*/*/*.debug' \
1505	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1506	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1507.endif
1508.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1509.for _kernel in ${BUILDKERNELS:[2..-1]}
1510	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1511	    tar cvf - --exclude '*.debug' \
1512	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1513	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1514.if ${MK_DEBUG_FILES} != "no"
1515	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1516	    tar cvf - --include '*/*/*.debug' \
1517	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1518	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1519.endif
1520.endfor
1521.endif
1522.else
1523.if !defined(NO_INSTALLKERNEL)
1524	cd ${DESTDIR}/${DISTDIR}/kernel; \
1525	    tar cvf - --exclude '*.debug' . | \
1526	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1527.endif
1528.if ${MK_DEBUG_FILES} != "no"
1529	cd ${DESTDIR}/${DISTDIR}/kernel; \
1530	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1531	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1532.endif
1533.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1534.for _kernel in ${BUILDKERNELS:[2..-1]}
1535	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1536	    tar cvf - --exclude '*.debug' . | \
1537	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1538.if ${MK_DEBUG_FILES} != "no"
1539	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1540	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1541	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1542.endif
1543.endfor
1544.endif
1545.endif
1546
1547stagekernel: .PHONY
1548	${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel
1549
1550PORTSDIR?=	/usr/ports
1551WSTAGEDIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/${TARGET}.${TARGET_ARCH}/worldstage
1552KSTAGEDIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/${TARGET}.${TARGET_ARCH}/kernelstage
1553REPODIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/repo
1554PKGSIGNKEY?=	# empty
1555
1556.ORDER:		stage-packages create-packages
1557.ORDER:		create-packages create-world-packages
1558.ORDER:		create-packages create-kernel-packages
1559.ORDER:		create-packages sign-packages
1560
1561_pkgbootstrap: .PHONY
1562.if !exists(${LOCALBASE}/sbin/pkg)
1563	@env ASSUME_ALWAYS_YES=YES pkg bootstrap
1564.endif
1565
1566packages: .PHONY
1567	${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} real-packages
1568
1569package-pkg: .PHONY
1570	rm -rf /tmp/ports.${TARGET} || :
1571	env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \
1572		PKG_CMD=${PKG_CMD} PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} \
1573		WSTAGEDIR=${WSTAGEDIR} \
1574		sh ${.CURDIR}/release/scripts/make-pkg-package.sh
1575
1576real-packages:	stage-packages create-packages sign-packages .PHONY
1577
1578stage-packages-world: .PHONY
1579	@mkdir -p ${WSTAGEDIR}
1580	${_+_}@cd ${.CURDIR}; \
1581		${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld
1582
1583stage-packages-kernel: .PHONY
1584	@mkdir -p ${KSTAGEDIR}
1585	${_+_}@cd ${.CURDIR}; \
1586		${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel
1587
1588stage-packages: .PHONY stage-packages-world stage-packages-kernel
1589
1590_repodir: .PHONY
1591	@mkdir -p ${REPODIR}
1592
1593create-packages-world:	_pkgbootstrap _repodir .PHONY
1594	${_+_}@cd ${.CURDIR}; \
1595		${MAKE} -f Makefile.inc1 \
1596			DESTDIR=${WSTAGEDIR} \
1597			PKG_VERSION=${PKG_VERSION} create-world-packages
1598
1599create-packages-kernel:	_pkgbootstrap _repodir .PHONY
1600	${_+_}@cd ${.CURDIR}; \
1601		${MAKE} -f Makefile.inc1 \
1602			DESTDIR=${KSTAGEDIR} \
1603			PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \
1604			create-kernel-packages
1605
1606create-packages: .PHONY create-packages-world create-packages-kernel
1607
1608create-world-packages:	_pkgbootstrap .PHONY
1609	@rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || :
1610	@cd ${WSTAGEDIR} ; \
1611		awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1612		${WSTAGEDIR}/METALOG
1613	@for plist in ${WSTAGEDIR}/*.plist; do \
1614	  plist=$${plist##*/} ; \
1615	  pkgname=$${plist%.plist} ; \
1616	  echo "_PKGS+= $${pkgname}" ; \
1617	done > ${WSTAGEDIR}/packages.mk
1618	${_+_}@cd ${.CURDIR}; \
1619		${MAKE} -f Makefile.inc1 create-world-packages-jobs \
1620		.MAKE.JOB.PREFIX=
1621
1622.if make(create-world-packages-jobs)
1623.include "${WSTAGEDIR}/packages.mk"
1624.endif
1625
1626create-world-packages-jobs: .PHONY
1627.for pkgname in ${_PKGS}
1628create-world-packages-jobs: create-world-package-${pkgname}
1629create-world-package-${pkgname}: .PHONY
1630	@sh ${SRCDIR}/release/packages/generate-ucl.sh -o ${pkgname} \
1631		-s ${SRCDIR} -u ${WSTAGEDIR}/${pkgname}.ucl
1632	@awk -F\" ' \
1633		/^name/ { printf("===> Creating %s-", $$2); next } \
1634		/^version/ { print $$2; next } \
1635		' ${WSTAGEDIR}/${pkgname}.ucl
1636	@if [ "${pkgname}" == "runtime" ]; then \
1637		sed -i '' -e "s/%VCS_REVISION%/${VCS_REVISION}/" ${WSTAGEDIR}/${pkgname}.ucl ; \
1638	fi
1639	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1640		create -M ${WSTAGEDIR}/${pkgname}.ucl \
1641		-p ${WSTAGEDIR}/${pkgname}.plist \
1642		-r ${WSTAGEDIR} \
1643		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION}
1644.endfor
1645
1646create-kernel-packages:	.PHONY
1647_default_flavor=	-default
1648.if exists(${KSTAGEDIR}/kernel.meta)
1649. if ${MK_DEBUG_FILES} != "no"
1650_debug=-debug
1651. endif
1652. for flavor in "" ${_debug}
1653create-kernel-packages: create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}
1654create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap .PHONY
1655	@cd ${KSTAGEDIR}/${DISTDIR} ; \
1656	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1657		-v kernel=yes -v _kernconf=${INSTALLKERNEL} \
1658		${KSTAGEDIR}/kernel.meta ; \
1659	cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1660	pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1661	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1662		-e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \
1663		-e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1664		-e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1665		-e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1666		-e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1667		-e "s/ %VCS_REVISION%/${VCS_REVISION}/" \
1668		${SRCDIR}/release/packages/kernel.ucl \
1669		> ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1670	awk -F\" ' \
1671		/name/ { printf("===> Creating %s-", $$2); next } \
1672		/version/ {print $$2; next } ' \
1673		${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1674	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1675		create -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \
1676		-p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \
1677		-r ${KSTAGEDIR}/${DISTDIR} \
1678		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION}
1679. endfor
1680.endif
1681.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1682. for _kernel in ${BUILDKERNELS:[2..-1]}
1683.  if exists(${KSTAGEDIR}/kernel.${_kernel}.meta)
1684.   if ${MK_DEBUG_FILES} != "no"
1685_debug=-debug
1686.   endif
1687.   for flavor in "" ${_debug}
1688create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}
1689create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}: _pkgbootstrap .PHONY
1690	@cd ${KSTAGEDIR}/kernel.${_kernel} ; \
1691	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1692		-v kernel=yes -v _kernconf=${_kernel} \
1693		${KSTAGEDIR}/kernel.${_kernel}.meta ; \
1694	cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1695	pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1696	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1697		-e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \
1698		-e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \
1699		-e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \
1700		-e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1701		-e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1702		-e "s/ %VCS_REVISION%/${VCS_REVISION}/" \
1703		${SRCDIR}/release/packages/kernel.ucl \
1704		> ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
1705	awk -F\" ' \
1706		/name/ { printf("===> Creating %s-", $$2); next } \
1707		/version/ {print $$2; next } ' \
1708		${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
1709	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1710		create -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \
1711		-p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \
1712		-r ${KSTAGEDIR}/kernel.${_kernel} \
1713		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION}
1714.   endfor
1715.  endif
1716. endfor
1717.endif
1718
1719sign-packages:	_pkgbootstrap .PHONY
1720	@[ -L "${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest" ] && \
1721		unlink ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest ; \
1722	${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh repo \
1723		-o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1724		${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1725		${PKGSIGNKEY} ; \
1726	cd ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI); \
1727	ln -s ${PKG_VERSION} latest
1728
1729#
1730#
1731# checkworld
1732#
1733# Run test suite on installed world.
1734#
1735checkworld: .PHONY
1736	@if [ ! -x "${LOCALBASE}/bin/kyua" ]; then \
1737		echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
1738		exit 1; \
1739	fi
1740	${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile
1741
1742#
1743#
1744# doxygen
1745#
1746# Build the API documentation with doxygen
1747#
1748doxygen: .PHONY
1749	@if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \
1750		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1751		exit 1; \
1752	fi
1753	${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1754
1755#
1756# update
1757#
1758# Update the source tree(s), by running svn/svnup to update to the
1759# latest copy.
1760#
1761update: .PHONY
1762.if defined(SVN_UPDATE)
1763	@echo "--------------------------------------------------------------"
1764	@echo ">>> Updating ${.CURDIR} using Subversion"
1765	@echo "--------------------------------------------------------------"
1766	@(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
1767.endif
1768
1769#
1770# ------------------------------------------------------------------------
1771#
1772# From here onwards are utility targets used by the 'make world' and
1773# related targets.  If your 'world' breaks, you may like to try to fix
1774# the problem and manually run the following targets to attempt to
1775# complete the build.  Beware, this is *not* guaranteed to work, you
1776# need to have a pretty good grip on the current state of the system
1777# to attempt to manually finish it.  If in doubt, 'make world' again.
1778#
1779
1780#
1781# legacy: Build compatibility shims for the next three targets. This is a
1782# minimal set of tools and shims necessary to compensate for older systems
1783# which don't have the APIs required by the targets built in bootstrap-tools,
1784# build-tools or cross-tools.
1785#
1786
1787# ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
1788# r296685 fix cross-endian objcopy
1789.if ${BOOTSTRAPPING} < 1100102
1790_elftoolchain_libs= lib/libelf lib/libdwarf
1791.endif
1792
1793legacy: .PHONY
1794# Temporary special case for automatically detecting the clang compiler issue
1795# Note: 9.x didn't have FreeBSD_version bumps often enough, so you may need to
1796# set BOOTSTRAPPING to 0 if you're stable/9 tree post-dates r286035 but is before
1797# the version bump in r296219 (from July 29, 2015 -> Feb 29, 2016).
1798.if ${BOOTSTRAPPING} != 0 && \
1799	${WANT_COMPILER_TYPE} == "clang" && ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} < 30601
1800.if   ${BOOTSTRAPPING} > 10000000 && ${BOOTSTRAPPING} < 1002501
1801	@echo "ERROR: Source upgrades from stable/10 prior to r286033 are not supported."; false
1802.elif ${BOOTSTRAPPING} >  9000000 && ${BOOTSTRAPPING} <  903509
1803	@echo "ERROR: Source upgrades from stable/9 prior to r286035 are not supported."; false
1804.endif
1805.endif
1806.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0
1807	@echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \
1808	false
1809.endif
1810
1811.for _tool in tools/build ${_elftoolchain_libs}
1812	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \
1813	    cd ${.CURDIR}/${_tool}; \
1814	    if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
1815	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1816	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \
1817	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \
1818	        DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1819.endfor
1820
1821#
1822# bootstrap-tools: Build tools needed for compatibility. These are binaries that
1823# are built to build other binaries in the system. However, the focus of these
1824# binaries is usually quite narrow. Bootstrap tools use the host's compiler and
1825# libraries, augmented by -legacy.
1826#
1827_bt=		_bootstrap-tools
1828
1829.if ${MK_GAMES} != "no"
1830_strfile=	usr.bin/fortune/strfile
1831.endif
1832
1833.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1834_gperf=		gnu/usr.bin/gperf
1835.endif
1836
1837.if ${MK_VT} != "no"
1838_vtfontcvt=	usr.bin/vtfontcvt
1839.endif
1840
1841.if ${BOOTSTRAPPING} < 1000033
1842_libopenbsd=	lib/libopenbsd
1843_m4=		usr.bin/m4
1844_lex=		usr.bin/lex
1845
1846${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd
1847${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1848.endif
1849
1850# r245440 mtree -N support added
1851# r313404 requires sha384.h for libnetbsd, added to libmd in r292782
1852.if ${BOOTSTRAPPING} < 1100093
1853_nmtree=	lib/libmd \
1854		lib/libnetbsd \
1855		usr.sbin/nmtree
1856
1857${_bt}-lib/libnetbsd: ${_bt}-lib/libmd
1858${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1859.endif
1860
1861# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l
1862.if ${BOOTSTRAPPING} < 1000027
1863_cat=		bin/cat
1864.endif
1865
1866# r277259 crunchide: Correct 64-bit section header offset
1867# r281674 crunchide: always include both 32- and 64-bit ELF support
1868.if ${BOOTSTRAPPING} < 1100078
1869_crunchide=	usr.sbin/crunch/crunchide
1870.endif
1871
1872# r285986 crunchen: use STRIPBIN rather than STRIP
1873# 1100113: Support MK_AUTO_OBJ
1874# 1200006: META_MODE fixes
1875.if ${BOOTSTRAPPING} < 1100078 || \
1876    (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114) || \
1877    (${MK_META_MODE} == "yes" && ${BOOTSTRAPPING} < 1200006)
1878_crunchgen=	usr.sbin/crunch/crunchgen
1879.endif
1880
1881# r296926 -P keymap search path, MFC to stable/10 in r298297
1882.if ${BOOTSTRAPPING} < 1003501 || \
1883	(${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103)
1884_kbdcontrol=	usr.sbin/kbdcontrol
1885.endif
1886
1887_yacc=		lib/liby \
1888		usr.bin/yacc
1889
1890${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1891
1892.if ${MK_BSNMP} != "no"
1893_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1894.endif
1895
1896# We need to build tblgen when we're building clang or lld, either as
1897# bootstrap tools, or as the part of the normal build.
1898.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \
1899    ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no"
1900_clang_tblgen= \
1901	lib/clang/libllvmminimal \
1902	usr.bin/clang/llvm-tblgen \
1903	usr.bin/clang/clang-tblgen
1904
1905${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal
1906${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal
1907.endif
1908
1909# Default to building the GPL DTC, but build the BSDL one if users explicitly
1910# request it.
1911_dtc= usr.bin/dtc
1912.if ${MK_GPL_DTC} != "no"
1913_dtc= gnu/usr.bin/dtc
1914.endif
1915
1916.if ${MK_KERBEROS} != "no"
1917_kerberos5_bootstrap_tools= \
1918	kerberos5/tools/make-roken \
1919	kerberos5/lib/libroken \
1920	kerberos5/lib/libvers \
1921	kerberos5/tools/asn1_compile \
1922	kerberos5/tools/slc \
1923	usr.bin/compile_et
1924
1925.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1926.endif
1927
1928# r283777 makewhatis(1) replaced with mandoc version which builds a database.
1929_libopenbsd?=	lib/libopenbsd
1930_makewhatis=	usr.bin/mandoc
1931${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd
1932
1933bootstrap-tools: .PHONY
1934
1935#	Please document (add comment) why something is in 'bootstrap-tools'.
1936#	Try to bound the building of the bootstrap-tool to just the
1937#	FreeBSD versions that need the tool built at this stage of the build.
1938.for _tool in \
1939    ${_clang_tblgen} \
1940    ${_kerberos5_bootstrap_tools} \
1941    ${_strfile} \
1942    ${_gperf} \
1943    ${_dtc} \
1944    ${_cat} \
1945    ${_kbdcontrol} \
1946    usr.bin/lorder \
1947    ${_libopenbsd} \
1948    ${_makewhatis} \
1949    usr.bin/rpcgen \
1950    ${_yacc} \
1951    ${_m4} \
1952    ${_lex} \
1953    usr.bin/xinstall \
1954    ${_gensnmptree} \
1955    usr.sbin/config \
1956    ${_crunchide} \
1957    ${_crunchgen} \
1958    ${_nmtree} \
1959    ${_vtfontcvt} \
1960    usr.bin/localedef
1961${_bt}-${_tool}: .PHONY .MAKE
1962	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1963		cd ${.CURDIR}/${_tool}; \
1964		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
1965		${MAKE} DIRPRFX=${_tool}/ all; \
1966		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1967
1968bootstrap-tools: ${_bt}-${_tool}
1969.endfor
1970
1971#
1972# build-tools: Build special purpose build tools
1973#
1974.if !defined(NO_SHARE)
1975_share=	share/syscons/scrnmaps
1976.endif
1977
1978.if ${MK_GCC} != "no"
1979_gcc_tools= gnu/usr.bin/cc/cc_tools
1980.endif
1981
1982.if ${MK_RESCUE} != "no"
1983# rescue includes programs that have build-tools targets
1984_rescue=rescue/rescue
1985.endif
1986
1987.for _tool in \
1988    bin/csh \
1989    bin/sh \
1990    ${LOCAL_TOOL_DIRS} \
1991    lib/ncurses/ncurses \
1992    lib/ncurses/ncursesw \
1993    ${_rescue} \
1994    ${_share} \
1995    usr.bin/awk \
1996    lib/libmagic \
1997    usr.bin/mkesdb_static \
1998    usr.bin/mkcsmapper_static \
1999    usr.bin/vi/catalog
2000build-tools_${_tool}: .PHONY
2001	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
2002		cd ${.CURDIR}/${_tool}; \
2003		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2004		${MAKE} DIRPRFX=${_tool}/ build-tools
2005build-tools: build-tools_${_tool}
2006.endfor
2007.for _tool in \
2008    ${_gcc_tools}
2009build-tools_${_tool}: .PHONY
2010	${_+_}@${ECHODIR} "===> ${_tool} (obj,all)"; \
2011		cd ${.CURDIR}/${_tool}; \
2012		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2013		${MAKE} DIRPRFX=${_tool}/ all
2014build-tools: build-tools_${_tool}
2015.endfor
2016
2017#
2018# kernel-tools: Build kernel-building tools
2019#
2020kernel-tools: .PHONY
2021	mkdir -p ${MAKEOBJDIRPREFIX}/usr
2022	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2023	    -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
2024
2025#
2026# cross-tools: All the tools needed to build the rest of the system after
2027# we get done with the earlier stages. It is the last set of tools needed
2028# to begin building the target binaries.
2029#
2030.if ${TARGET_ARCH} != ${MACHINE_ARCH}
2031.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
2032_btxld=		usr.sbin/btxld
2033.endif
2034.endif
2035
2036# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
2037# resulting from missing bug fixes or ELF Toolchain updates.
2038.if ${MK_CDDL} != "no"
2039_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
2040    cddl/usr.bin/ctfmerge
2041.endif
2042
2043# If we're given an XAS, don't build binutils.
2044.if ${XAS:M/*} == ""
2045.if ${MK_BINUTILS_BOOTSTRAP} != "no"
2046_binutils=	gnu/usr.bin/binutils
2047.endif
2048.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2049_elftctools=	lib/libelftc \
2050		lib/libpe \
2051		usr.bin/elfcopy \
2052		usr.bin/nm \
2053		usr.bin/size \
2054		usr.bin/strings
2055# These are not required by the build, but can be useful for developers who
2056# cross-build on a FreeBSD 10 host:
2057_elftctools+=	usr.bin/addr2line
2058.endif
2059.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2060# If cross-building with an external binutils we still need to build strip for
2061# the target (for at least crunchide).
2062_elftctools=	lib/libelftc \
2063		lib/libpe \
2064		usr.bin/elfcopy
2065.endif
2066
2067.if ${MK_CLANG_BOOTSTRAP} != "no"
2068_clang=		usr.bin/clang
2069.endif
2070.if ${MK_LLD_BOOTSTRAP} != "no"
2071_lld=		usr.bin/clang/lld
2072.endif
2073.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no"
2074_clang_libs=	lib/clang
2075.endif
2076.if ${MK_GCC_BOOTSTRAP} != "no"
2077_gcc=		gnu/usr.bin/cc
2078.endif
2079.if ${MK_USB} != "no"
2080_usb_tools=	sys/boot/usb/tools
2081.endif
2082
2083cross-tools: .MAKE .PHONY
2084.for _tool in \
2085    ${LOCAL_XTOOL_DIRS} \
2086    ${_clang_libs} \
2087    ${_clang} \
2088    ${_lld} \
2089    ${_binutils} \
2090    ${_elftctools} \
2091    ${_dtrace_tools} \
2092    ${_gcc} \
2093    ${_btxld} \
2094    ${_usb_tools}
2095	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2096		cd ${.CURDIR}/${_tool}; \
2097		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2098		${MAKE} DIRPRFX=${_tool}/ all; \
2099		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
2100.endfor
2101
2102NXBDESTDIR=	${OBJTREE}/nxb-bin
2103NXBENV=		MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
2104		TOOLS_PREFIX= \
2105		INSTALL="sh ${.CURDIR}/tools/install.sh" \
2106		PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
2107NXBMAKE=	${NXBENV} ${MAKE} \
2108		LLVM_TBLGEN=${NXBDESTDIR}/usr/bin/llvm-tblgen \
2109		CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \
2110		MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
2111		MK_GDB=no MK_TESTS=no \
2112		SSP_CFLAGS= \
2113		MK_HTML=no NO_LINT=yes MK_MAN=no MK_MAN_UTILS=yes \
2114		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
2115		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
2116		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
2117		MK_LLDB=no MK_DEBUG_FILES=no
2118
2119# native-xtools is the current target for qemu-user cross builds of ports
2120# via poudriere and the imgact_binmisc kernel module.
2121# For non-clang enabled targets that are still using the in tree gcc
2122# we must build a gperf binary for one instance of its Makefiles.  On
2123# clang-enabled systems, the gperf binary is obsolete.
2124native-xtools: .PHONY
2125.if ${MK_GCC_BOOTSTRAP} != "no"
2126	mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
2127	${_+_}@${ECHODIR} "===> ${_gperf} (obj,all,install)"; \
2128	cd ${.CURDIR}/${_gperf}; \
2129	if [ -z "${NO_OBJ}" ]; then ${NXBMAKE} DIRPRFX=${_gperf}/ obj; fi; \
2130	${NXBMAKE} DIRPRFX=${_gperf}/ all; \
2131	${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
2132.endif
2133	mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
2134	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2135	    -p ${NXBDESTDIR}/usr >/dev/null
2136	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2137	    -p ${NXBDESTDIR}/usr/include >/dev/null
2138.if ${MK_DEBUG_FILES} != "no"
2139	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
2140	    -p ${NXBDESTDIR}/usr/lib >/dev/null
2141.endif
2142.for _tool in \
2143    bin/cat \
2144    bin/chmod \
2145    bin/cp \
2146    bin/csh \
2147    bin/echo \
2148    bin/expr \
2149    bin/hostname \
2150    bin/ln \
2151    bin/ls \
2152    bin/mkdir \
2153    bin/mv \
2154    bin/ps \
2155    bin/realpath \
2156    bin/rm \
2157    bin/rmdir \
2158    bin/sh \
2159    bin/sleep \
2160    ${_clang_tblgen} \
2161    usr.bin/ar \
2162    ${_binutils} \
2163    ${_elftctools} \
2164    ${_gcc} \
2165    ${_gcc_tools} \
2166    ${_clang_libs} \
2167    ${_clang} \
2168    ${_lld} \
2169    sbin/md5 \
2170    sbin/sysctl \
2171    usr.bin/diff \
2172    usr.bin/awk \
2173    usr.bin/basename \
2174    usr.bin/bmake \
2175    usr.bin/bzip2 \
2176    usr.bin/cmp \
2177    usr.bin/dirname \
2178    usr.bin/env \
2179    usr.bin/fetch \
2180    usr.bin/find \
2181    usr.bin/grep \
2182    usr.bin/gzip \
2183    usr.bin/id \
2184    usr.bin/lex \
2185    usr.bin/limits \
2186    usr.bin/lorder \
2187    ${_libopenbsd} \
2188    ${_makewhatis} \
2189    usr.bin/mktemp \
2190    usr.bin/mt \
2191    usr.bin/patch \
2192    usr.bin/readelf \
2193    usr.bin/sed \
2194    usr.bin/sort \
2195    usr.bin/tar \
2196    usr.bin/touch \
2197    usr.bin/tr \
2198    usr.bin/true \
2199    usr.bin/uniq \
2200    usr.bin/unzip \
2201    usr.bin/xargs \
2202    usr.bin/xinstall \
2203    usr.bin/xz \
2204    usr.bin/yacc \
2205    usr.sbin/chown
2206	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2207		cd ${.CURDIR}/${_tool}; \
2208		if [ -z "${NO_OBJ}" ]; then ${NXBMAKE} DIRPRFX=${_tool}/ obj; fi; \
2209		${NXBMAKE} DIRPRFX=${_tool}/ all; \
2210		${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${NXBDESTDIR} install
2211.endfor
2212
2213#
2214# hierarchy - ensure that all the needed directories are present
2215#
2216hierarchy hier: .MAKE .PHONY
2217	${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
2218
2219#
2220# libraries - build all libraries, and install them under ${DESTDIR}.
2221#
2222# The list of libraries with dependents (${_prebuild_libs}) and their
2223# interdependencies (__L) are built automatically by the
2224# ${.CURDIR}/tools/make_libdeps.sh script.
2225#
2226libraries: .MAKE .PHONY
2227	${_+_}cd ${.CURDIR}; \
2228	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
2229	    ${MAKE} -f Makefile.inc1 _startup_libs; \
2230	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
2231	    ${MAKE} -f Makefile.inc1 _generic_libs
2232
2233#
2234# static libgcc.a prerequisite for shared libc
2235#
2236_prereq_libs= lib/libcompiler_rt
2237.if ${MK_SSP} != "no"
2238_prereq_libs+= gnu/lib/libssp/libssp_nonshared
2239.endif
2240
2241# These dependencies are not automatically generated:
2242#
2243# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
2244# all shared libraries for ELF.
2245#
2246_startup_libs=	gnu/lib/csu
2247_startup_libs+=	lib/csu
2248_startup_libs+=	lib/libcompiler_rt
2249_startup_libs+=	lib/libc
2250_startup_libs+=	lib/libc_nonshared
2251.if ${MK_LIBCPLUSPLUS} != "no"
2252_startup_libs+=	lib/libcxxrt
2253.endif
2254
2255.if ${MK_LLVM_LIBUNWIND} != "no"
2256_prereq_libs+=	lib/libgcc_eh lib/libgcc_s
2257_startup_libs+=	lib/libgcc_eh lib/libgcc_s
2258
2259lib/libgcc_s__L: lib/libc__L
2260lib/libgcc_s__L: lib/libc_nonshared__L
2261.if ${MK_LIBCPLUSPLUS} != "no"
2262lib/libcxxrt__L: lib/libgcc_s__L
2263.endif
2264
2265.else # MK_LLVM_LIBUNWIND == no
2266
2267_prereq_libs+=	gnu/lib/libgcc
2268_startup_libs+=	gnu/lib/libgcc
2269
2270gnu/lib/libgcc__L: lib/libc__L
2271gnu/lib/libgcc__L: lib/libc_nonshared__L
2272.if ${MK_LIBCPLUSPLUS} != "no"
2273lib/libcxxrt__L: gnu/lib/libgcc__L
2274.endif
2275.endif
2276
2277_prebuild_libs=	${_kerberos5_lib_libasn1} \
2278		${_kerberos5_lib_libhdb} \
2279		${_kerberos5_lib_libheimbase} \
2280		${_kerberos5_lib_libheimntlm} \
2281		${_libsqlite3} \
2282		${_kerberos5_lib_libheimipcc} \
2283		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
2284		${_kerberos5_lib_libroken} \
2285		${_kerberos5_lib_libwind} \
2286		lib/libbz2 ${_libcom_err} lib/libcrypt \
2287		lib/libelf lib/libexpat \
2288		lib/libfigpar \
2289		${_lib_libgssapi} \
2290		lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
2291		${_lib_casper} \
2292		lib/ncurses/ncurses lib/ncurses/ncursesw \
2293		lib/libopie lib/libpam/libpam ${_lib_libthr} \
2294		${_lib_libradius} lib/libsbuf lib/libtacplus \
2295		lib/libgeom \
2296		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
2297		${_cddl_lib_libuutil} \
2298		${_cddl_lib_libavl} \
2299		${_cddl_lib_libzfs_core} \
2300		${_cddl_lib_libctf} \
2301		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
2302		${_secure_lib_libcrypto} ${_lib_libldns} \
2303		${_secure_lib_libssh} ${_secure_lib_libssl}
2304
2305.if ${MK_GNUCXX} != "no"
2306_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
2307gnu/lib/libstdc++__L: lib/msun__L
2308gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
2309.endif
2310
2311.if ${MK_DIALOG} != "no"
2312_prebuild_libs+= gnu/lib/libdialog
2313gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
2314.endif
2315
2316.if ${MK_LIBCPLUSPLUS} != "no"
2317_prebuild_libs+= lib/libc++
2318.endif
2319
2320lib/libgeom__L: lib/libexpat__L
2321lib/libkvm__L: lib/libelf__L
2322
2323.if ${MK_LIBTHR} != "no"
2324_lib_libthr=	lib/libthr
2325.endif
2326
2327.if ${MK_RADIUS_SUPPORT} != "no"
2328_lib_libradius=	lib/libradius
2329.endif
2330
2331.if ${MK_OFED} != "no"
2332_ofed_lib=		contrib/ofed/usr.lib
2333_prebuild_libs+=	contrib/ofed/usr.lib/libosmcomp
2334_prebuild_libs+=	contrib/ofed/usr.lib/libopensm
2335_prebuild_libs+=	contrib/ofed/usr.lib/libibcommon
2336_prebuild_libs+=	contrib/ofed/usr.lib/libibverbs
2337_prebuild_libs+=	contrib/ofed/usr.lib/libibumad
2338
2339contrib/ofed/usr.lib/libopensm__L: lib/libthr__L
2340contrib/ofed/usr.lib/libosmcomp__L: lib/libthr__L
2341contrib/ofed/usr.lib/libibumad__L: contrib/ofed/usr.lib/libibcommon__L
2342.endif
2343
2344.if ${MK_CASPER} != "no"
2345_lib_casper=	lib/libcasper
2346.endif
2347
2348lib/libpjdlog__L: lib/libutil__L
2349lib/libcasper__L: lib/libnv__L
2350lib/liblzma__L: lib/libthr__L
2351
2352_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
2353.for _DIR in ${LOCAL_LIB_DIRS}
2354.if exists(${.CURDIR}/${_DIR}/Makefile) && empty(_generic_libs:M${_DIR})
2355_generic_libs+= ${_DIR}
2356.endif
2357.endfor
2358
2359lib/libopie__L lib/libtacplus__L: lib/libmd__L
2360
2361.if ${MK_CDDL} != "no"
2362_cddl_lib_libumem= cddl/lib/libumem
2363_cddl_lib_libnvpair= cddl/lib/libnvpair
2364_cddl_lib_libavl= cddl/lib/libavl
2365_cddl_lib_libuutil= cddl/lib/libuutil
2366.if ${MK_ZFS} != "no"
2367_cddl_lib_libzfs_core= cddl/lib/libzfs_core
2368cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
2369.endif
2370_cddl_lib_libctf= cddl/lib/libctf
2371_cddl_lib= cddl/lib
2372cddl/lib/libctf__L: lib/libz__L
2373.endif
2374# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
2375# on select architectures though (see cddl/lib/Makefile)
2376.if ${MACHINE_CPUARCH} != "sparc64"
2377_prebuild_libs+=	lib/libprocstat lib/libproc lib/librtld_db
2378lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L
2379lib/libproc__L: lib/libprocstat__L
2380lib/librtld_db__L: lib/libprocstat__L
2381.endif
2382
2383.if ${MK_CRYPT} != "no"
2384.if ${MK_OPENSSL} != "no"
2385_secure_lib_libcrypto= secure/lib/libcrypto
2386_secure_lib_libssl= secure/lib/libssl
2387lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
2388.if ${MK_LDNS} != "no"
2389_lib_libldns= lib/libldns
2390lib/libldns__L: secure/lib/libcrypto__L
2391.endif
2392.if ${MK_OPENSSH} != "no"
2393_secure_lib_libssh= secure/lib/libssh
2394secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
2395.if ${MK_LDNS} != "no"
2396secure/lib/libssh__L: lib/libldns__L
2397.endif
2398.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no"
2399secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
2400    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
2401    lib/libmd__L kerberos5/lib/libroken__L
2402.endif
2403.endif
2404.endif
2405_secure_lib=	secure/lib
2406.endif
2407
2408.if ${MK_KERBEROS} != "no"
2409kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
2410kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2411    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
2412    kerberos5/lib/libwind__L lib/libsqlite3__L
2413kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
2414    kerberos5/lib/libroken__L lib/libcom_err__L
2415kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2416    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
2417kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2418    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
2419    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
2420    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
2421kerberos5/lib/libroken__L: lib/libcrypt__L
2422kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
2423kerberos5/lib/libheimbase__L: lib/libthr__L
2424kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
2425.endif
2426
2427lib/libsqlite3__L: lib/libthr__L
2428
2429.if ${MK_GSSAPI} != "no"
2430_lib_libgssapi=	lib/libgssapi
2431.endif
2432
2433.if ${MK_KERBEROS} != "no"
2434_kerberos5_lib=	kerberos5/lib
2435_kerberos5_lib_libasn1= kerberos5/lib/libasn1
2436_kerberos5_lib_libhdb= kerberos5/lib/libhdb
2437_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
2438_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
2439_kerberos5_lib_libhx509= kerberos5/lib/libhx509
2440_kerberos5_lib_libroken= kerberos5/lib/libroken
2441_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
2442_libsqlite3= lib/libsqlite3
2443_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
2444_kerberos5_lib_libwind= kerberos5/lib/libwind
2445_libcom_err= lib/libcom_err
2446.endif
2447
2448.if ${MK_NIS} != "no"
2449_lib_libypclnt=	lib/libypclnt
2450.endif
2451
2452.if ${MK_OPENSSL} == "no"
2453lib/libradius__L: lib/libmd__L
2454.endif
2455
2456lib/libproc__L: \
2457    ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
2458.if ${MK_CXX} != "no"
2459.if ${MK_LIBCPLUSPLUS} != "no"
2460lib/libproc__L: lib/libcxxrt__L
2461.else # This implies MK_GNUCXX != "no"; see lib/libproc
2462lib/libproc__L: gnu/lib/libsupc++__L
2463.endif
2464.endif
2465
2466.for _lib in ${_prereq_libs}
2467${_lib}__PL: .PHONY .MAKE
2468.if exists(${.CURDIR}/${_lib})
2469	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2470		cd ${.CURDIR}/${_lib}; \
2471		if [ -z "${NO_OBJ}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
2472		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2473		    DIRPRFX=${_lib}/ all; \
2474		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2475		    DIRPRFX=${_lib}/ install
2476.endif
2477.endfor
2478
2479.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
2480${_lib}__L: .PHONY .MAKE
2481.if exists(${.CURDIR}/${_lib})
2482	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2483		cd ${.CURDIR}/${_lib}; \
2484		if [ -z "${NO_OBJ}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
2485		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
2486		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
2487.endif
2488.endfor
2489
2490_prereq_libs: ${_prereq_libs:S/$/__PL/}
2491_startup_libs: ${_startup_libs:S/$/__L/}
2492_prebuild_libs: ${_prebuild_libs:S/$/__L/}
2493_generic_libs: ${_generic_libs:S/$/__L/}
2494
2495# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
2496# 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
2497# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
2498# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
2499# parallel.  This is safe for the world stage of buildworld though since it has
2500# already built libraries in a proper order and installed includes into
2501# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
2502# avoid trashing a system if it crashes mid-install.
2503.if !make(all) || defined(_PARALLEL_SUBDIR_OK)
2504SUBDIR_PARALLEL=
2505.endif
2506
2507.include <bsd.subdir.mk>
2508
2509.if make(check-old) || make(check-old-dirs) || \
2510    make(check-old-files) || make(check-old-libs) || \
2511    make(delete-old) || make(delete-old-dirs) || \
2512    make(delete-old-files) || make(delete-old-libs)
2513
2514#
2515# check for / delete old files section
2516#
2517
2518.include "ObsoleteFiles.inc"
2519
2520OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
2521else you can not start such an application. Consult UPDATING for more \
2522information regarding how to cope with the removal/revision bump of a \
2523specific library."
2524
2525.if !defined(BATCH_DELETE_OLD_FILES)
2526RM_I=-i
2527.else
2528RM_I=-v
2529.endif
2530
2531delete-old-files: .PHONY
2532	@echo ">>> Removing old files (only deletes safe to delete libs)"
2533# Ask for every old file if the user really wants to remove it.
2534# It's annoying, but better safe than sorry.
2535# NB: We cannot pass the list of OLD_FILES as a parameter because the
2536# argument list will get too long. Using .for/.endfor make "loops" will make
2537# the Makefile parser segfault.
2538	@exec 3<&0; \
2539	cd ${.CURDIR}; \
2540	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2541	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2542	while read file; do \
2543		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2544			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2545			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2546		fi; \
2547		for ext in debug symbols; do \
2548		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2549		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2550			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2551			      <&3; \
2552		  fi; \
2553		done; \
2554	done
2555# Remove catpages without corresponding manpages.
2556	@exec 3<&0; \
2557	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2558	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2559	while read catpage; do \
2560		read manpage; \
2561		if [ ! -e "$${manpage}" ]; then \
2562			rm ${RM_I} $${catpage} <&3; \
2563	        fi; \
2564	done
2565	@echo ">>> Old files removed"
2566
2567check-old-files: .PHONY
2568	@echo ">>> Checking for old files"
2569	@cd ${.CURDIR}; \
2570	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2571	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2572	while read file; do \
2573		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2574		 	echo "${DESTDIR}/$${file}"; \
2575		fi; \
2576		for ext in debug symbols; do \
2577		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2578			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2579		  fi; \
2580		done; \
2581	done
2582# Check for catpages without corresponding manpages.
2583	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2584	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2585	while read catpage; do \
2586		read manpage; \
2587		if [ ! -e "$${manpage}" ]; then \
2588			echo $${catpage}; \
2589	        fi; \
2590	done
2591
2592delete-old-libs: .PHONY
2593	@echo ">>> Removing old libraries"
2594	@echo "${OLD_LIBS_MESSAGE}" | fmt
2595	@exec 3<&0; \
2596	cd ${.CURDIR}; \
2597	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2598	    -V OLD_LIBS | xargs -n1 | \
2599	while read file; do \
2600		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2601			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2602			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2603		fi; \
2604		for ext in debug symbols; do \
2605		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2606		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2607			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2608			      <&3; \
2609		  fi; \
2610		done; \
2611	done
2612	@echo ">>> Old libraries removed"
2613
2614check-old-libs: .PHONY
2615	@echo ">>> Checking for old libraries"
2616	@cd ${.CURDIR}; \
2617	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2618	    -V OLD_LIBS | xargs -n1 | \
2619	while read file; do \
2620		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2621			echo "${DESTDIR}/$${file}"; \
2622		fi; \
2623		for ext in debug symbols; do \
2624		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2625			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2626		  fi; \
2627		done; \
2628	done
2629
2630delete-old-dirs: .PHONY
2631	@echo ">>> Removing old directories"
2632	@cd ${.CURDIR}; \
2633	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2634	    -V OLD_DIRS | xargs -n1 | sort -r | \
2635	while read dir; do \
2636		if [ -d "${DESTDIR}/$${dir}" ]; then \
2637			rmdir -v "${DESTDIR}/$${dir}" || true; \
2638		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2639			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2640		fi; \
2641		if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2642			rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \
2643		elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2644			echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
2645		fi; \
2646	done
2647	@echo ">>> Old directories removed"
2648
2649check-old-dirs: .PHONY
2650	@echo ">>> Checking for old directories"
2651	@cd ${.CURDIR}; \
2652	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2653	    -V OLD_DIRS | xargs -n1 | \
2654	while read dir; do \
2655		if [ -d "${DESTDIR}/$${dir}" ]; then \
2656			echo "${DESTDIR}/$${dir}"; \
2657		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2658			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2659		fi; \
2660		if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2661			echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \
2662		elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2663			echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
2664		fi; \
2665	done
2666
2667delete-old: delete-old-files delete-old-dirs .PHONY
2668	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
2669
2670check-old: check-old-files check-old-libs check-old-dirs .PHONY
2671	@echo "To remove old files and directories run '${MAKE_CMD} delete-old'."
2672	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
2673
2674.endif
2675
2676#
2677# showconfig - show build configuration.
2678#
2679showconfig: .PHONY
2680	@(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \
2681	  ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u
2682
2683.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2684DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2685
2686.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2687.if exists(${KERNCONFDIR}/${KERNCONF})
2688FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2689	'${KERNCONFDIR}/${KERNCONF}' ; echo
2690.endif
2691.endif
2692
2693.endif
2694
2695.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2696DTBOUTPUTPATH= ${.CURDIR}
2697.endif
2698
2699#
2700# Build 'standalone' Device Tree Blob
2701#
2702builddtb: .PHONY
2703	@PATH=${TMPPATH} MACHINE=${TARGET} \
2704	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2705	    "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2706
2707###############
2708
2709# cleanworld
2710# In the following, the first 'rm' in a series will usually remove all
2711# files and directories.  If it does not, then there are probably some
2712# files with file flags set, so this unsets them and tries the 'rm' a
2713# second time.  There are situations where this target will be cleaning
2714# some directories via more than one method, but that duplication is
2715# needed to correctly handle all the possible situations.  Removing all
2716# files without file flags set in the first 'rm' instance saves time,
2717# because 'chflags' will need to operate on fewer files afterwards.
2718#
2719# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
2720# created by bsd.obj.mk, except that we don't want to .include that file
2721# in this makefile.
2722#
2723BW_CANONICALOBJDIR:=${OBJTREE}${.CURDIR}
2724cleanworld: .PHONY
2725.if exists(${BW_CANONICALOBJDIR}/)
2726	-rm -rf ${BW_CANONICALOBJDIR}/*
2727	-chflags -R 0 ${BW_CANONICALOBJDIR}
2728	rm -rf ${BW_CANONICALOBJDIR}/*
2729.endif
2730.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
2731	#   To be safe in this case, fall back to a 'make cleandir'
2732	${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
2733.endif
2734
2735.if defined(TARGET) && defined(TARGET_ARCH)
2736
2737.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2738XDEV_CPUTYPE?=${CPUTYPE}
2739.else
2740XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2741.endif
2742
2743NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2744	MK_MAN=no MK_NLS=no MK_PROFILE=no \
2745	MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2746	TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2747	CPUTYPE=${XDEV_CPUTYPE}
2748
2749XDDIR=${TARGET_ARCH}-freebsd
2750XDTP?=/usr/${XDDIR}
2751.if ${XDTP:N/*}
2752.error XDTP variable should be an absolute path
2753.endif
2754
2755CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2756	INSTALL="sh ${.CURDIR}/tools/install.sh"
2757CDENV= ${CDBENV} \
2758	TOOLS_PREFIX=${XDTP}
2759
2760.if ${WANT_COMPILER_TYPE} == gcc || \
2761    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
2762# GCC requires -isystem and -L when using a cross-compiler.  --sysroot
2763# won't set header path and -L is used to ensure the base library path
2764# is added before the port PREFIX library path.
2765CD2CFLAGS+=	-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib
2766# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
2767# combined with --sysroot.
2768CD2CFLAGS+=	-B${XDDESTDIR}/usr/lib
2769# Force using libc++ for external GCC.
2770.if ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800
2771CD2CXXFLAGS+=	-isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \
2772		-nostdinc++
2773.endif
2774.endif
2775CD2CFLAGS+=	--sysroot=${XDDESTDIR}/
2776CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \
2777	CPP="${CPP} ${CD2CFLAGS}" \
2778	MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2779
2780CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2781CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2782CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2783.if ${MK_META_MODE} != "no"
2784# Don't rebuild build-tools targets during normal build.
2785CD2MAKE+=	BUILD_TOOLS_META=.NOMETA
2786.endif
2787XDDESTDIR=${DESTDIR}/${XDTP}
2788
2789.ORDER: xdev-build xdev-install xdev-links
2790xdev: xdev-build xdev-install .PHONY
2791
2792.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2793xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY
2794
2795_xb-worldtmp: .PHONY
2796	mkdir -p ${CDTMP}/usr
2797	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2798	    -p ${CDTMP}/usr >/dev/null
2799
2800_xb-bootstrap-tools: .PHONY
2801.for _tool in \
2802    ${_clang_tblgen} \
2803    ${_gperf} \
2804    ${_yacc}
2805	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2806	cd ${.CURDIR}/${_tool}; \
2807	if [ -z "${NO_OBJ}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
2808	${CDMAKE} DIRPRFX=${_tool}/ all; \
2809	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2810.endfor
2811
2812_xb-build-tools: .PHONY
2813	${_+_}@cd ${.CURDIR}; \
2814	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2815
2816_xb-cross-tools: .PHONY
2817.for _tool in \
2818    ${_binutils} \
2819    ${_elftctools} \
2820    usr.bin/ar \
2821    ${_clang_libs} \
2822    ${_clang} \
2823    ${_gcc}
2824	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \
2825	cd ${.CURDIR}/${_tool}; \
2826	if [ -z "${NO_OBJ}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
2827	${CDMAKE} DIRPRFX=${_tool}/ all
2828.endfor
2829
2830_xi-mtree: .PHONY
2831	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2832	mkdir -p ${XDDESTDIR}
2833	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2834	    -p ${XDDESTDIR} >/dev/null
2835	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2836	    -p ${XDDESTDIR}/usr >/dev/null
2837	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2838	    -p ${XDDESTDIR}/usr/include >/dev/null
2839.if defined(LIBCOMPAT)
2840	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
2841	    -p ${XDDESTDIR}/usr >/dev/null
2842.endif
2843.if ${MK_TESTS} != "no"
2844	mkdir -p ${XDDESTDIR}${TESTSBASE}
2845	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2846	    -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2847.endif
2848
2849.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2850xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY
2851
2852_xi-cross-tools: .PHONY
2853	@echo "_xi-cross-tools"
2854.for _tool in \
2855    ${_binutils} \
2856    ${_elftctools} \
2857    usr.bin/ar \
2858    ${_clang_libs} \
2859    ${_clang} \
2860    ${_gcc}
2861	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2862	cd ${.CURDIR}/${_tool}; \
2863	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2864.endfor
2865
2866_xi-includes: .PHONY
2867	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
2868		DESTDIR=${XDDESTDIR}
2869
2870_xi-libraries: .PHONY
2871	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2872		DESTDIR=${XDDESTDIR}
2873
2874xdev-links: .PHONY
2875	${_+_}cd ${XDDESTDIR}/usr/bin; \
2876	mkdir -p ../../../../usr/bin; \
2877		for i in *; do \
2878			ln -sf ../../${XDTP}/usr/bin/$$i \
2879			    ../../../../usr/bin/${XDDIR}-$$i; \
2880			ln -sf ../../${XDTP}/usr/bin/$$i \
2881			    ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \
2882		done
2883.else
2884xdev xdev-build xdev-install xdev-links: .PHONY
2885	@echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2886.endif
2887