xref: /freebsd/Makefile.inc1 (revision 40427cca7a9ae77b095936fb1954417c290cfb17)
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# r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2.
1790.if ${BOOTSTRAPPING} < 1200020
1791_elftoolchain_libs= lib/libelf lib/libdwarf
1792.endif
1793
1794legacy: .PHONY
1795# Temporary special case for automatically detecting the clang compiler issue
1796# Note: 9.x didn't have FreeBSD_version bumps often enough, so you may need to
1797# set BOOTSTRAPPING to 0 if you're stable/9 tree post-dates r286035 but is before
1798# the version bump in r296219 (from July 29, 2015 -> Feb 29, 2016).
1799.if ${BOOTSTRAPPING} != 0 && \
1800	${WANT_COMPILER_TYPE} == "clang" && ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} < 30601
1801.if   ${BOOTSTRAPPING} > 10000000 && ${BOOTSTRAPPING} < 1002501
1802	@echo "ERROR: Source upgrades from stable/10 prior to r286033 are not supported."; false
1803.elif ${BOOTSTRAPPING} >  9000000 && ${BOOTSTRAPPING} <  903509
1804	@echo "ERROR: Source upgrades from stable/9 prior to r286035 are not supported."; false
1805.endif
1806.endif
1807.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0
1808	@echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \
1809	false
1810.endif
1811
1812.for _tool in tools/build ${_elftoolchain_libs}
1813	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \
1814	    cd ${.CURDIR}/${_tool}; \
1815	    if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
1816	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1817	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \
1818	    ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \
1819	        DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1820.endfor
1821
1822#
1823# bootstrap-tools: Build tools needed for compatibility. These are binaries that
1824# are built to build other binaries in the system. However, the focus of these
1825# binaries is usually quite narrow. Bootstrap tools use the host's compiler and
1826# libraries, augmented by -legacy.
1827#
1828_bt=		_bootstrap-tools
1829
1830.if ${MK_GAMES} != "no"
1831_strfile=	usr.bin/fortune/strfile
1832.endif
1833
1834.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1835_gperf=		gnu/usr.bin/gperf
1836.endif
1837
1838.if ${MK_VT} != "no"
1839_vtfontcvt=	usr.bin/vtfontcvt
1840.endif
1841
1842.if ${BOOTSTRAPPING} < 1000033
1843_libopenbsd=	lib/libopenbsd
1844_m4=		usr.bin/m4
1845_lex=		usr.bin/lex
1846
1847${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd
1848${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1849.endif
1850
1851# r245440 mtree -N support added
1852# r313404 requires sha384.h for libnetbsd, added to libmd in r292782
1853.if ${BOOTSTRAPPING} < 1100093
1854_nmtree=	lib/libmd \
1855		lib/libnetbsd \
1856		usr.sbin/nmtree
1857
1858${_bt}-lib/libnetbsd: ${_bt}-lib/libmd
1859${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1860.endif
1861
1862# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l
1863.if ${BOOTSTRAPPING} < 1000027
1864_cat=		bin/cat
1865.endif
1866
1867# r277259 crunchide: Correct 64-bit section header offset
1868# r281674 crunchide: always include both 32- and 64-bit ELF support
1869.if ${BOOTSTRAPPING} < 1100078
1870_crunchide=	usr.sbin/crunch/crunchide
1871.endif
1872
1873# r285986 crunchen: use STRIPBIN rather than STRIP
1874# 1100113: Support MK_AUTO_OBJ
1875# 1200006: META_MODE fixes
1876.if ${BOOTSTRAPPING} < 1100078 || \
1877    (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114) || \
1878    (${MK_META_MODE} == "yes" && ${BOOTSTRAPPING} < 1200006)
1879_crunchgen=	usr.sbin/crunch/crunchgen
1880.endif
1881
1882# r296926 -P keymap search path, MFC to stable/10 in r298297
1883.if ${BOOTSTRAPPING} < 1003501 || \
1884	(${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103)
1885_kbdcontrol=	usr.sbin/kbdcontrol
1886.endif
1887
1888_yacc=		lib/liby \
1889		usr.bin/yacc
1890
1891${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1892
1893.if ${MK_BSNMP} != "no"
1894_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1895.endif
1896
1897# We need to build tblgen when we're building clang or lld, either as
1898# bootstrap tools, or as the part of the normal build.
1899.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \
1900    ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no"
1901_clang_tblgen= \
1902	lib/clang/libllvmminimal \
1903	usr.bin/clang/llvm-tblgen \
1904	usr.bin/clang/clang-tblgen
1905
1906${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal
1907${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal
1908.endif
1909
1910# Default to building the GPL DTC, but build the BSDL one if users explicitly
1911# request it.
1912_dtc= usr.bin/dtc
1913.if ${MK_GPL_DTC} != "no"
1914_dtc= gnu/usr.bin/dtc
1915.endif
1916
1917.if ${MK_KERBEROS} != "no"
1918_kerberos5_bootstrap_tools= \
1919	kerberos5/tools/make-roken \
1920	kerberos5/lib/libroken \
1921	kerberos5/lib/libvers \
1922	kerberos5/tools/asn1_compile \
1923	kerberos5/tools/slc \
1924	usr.bin/compile_et
1925
1926.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1927.endif
1928
1929# r283777 makewhatis(1) replaced with mandoc version which builds a database.
1930_libopenbsd?=	lib/libopenbsd
1931_makewhatis=	usr.bin/mandoc
1932${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd
1933
1934bootstrap-tools: .PHONY
1935
1936#	Please document (add comment) why something is in 'bootstrap-tools'.
1937#	Try to bound the building of the bootstrap-tool to just the
1938#	FreeBSD versions that need the tool built at this stage of the build.
1939.for _tool in \
1940    ${_clang_tblgen} \
1941    ${_kerberos5_bootstrap_tools} \
1942    ${_strfile} \
1943    ${_gperf} \
1944    ${_dtc} \
1945    ${_cat} \
1946    ${_kbdcontrol} \
1947    usr.bin/lorder \
1948    ${_libopenbsd} \
1949    ${_makewhatis} \
1950    usr.bin/rpcgen \
1951    ${_yacc} \
1952    ${_m4} \
1953    ${_lex} \
1954    usr.bin/xinstall \
1955    ${_gensnmptree} \
1956    usr.sbin/config \
1957    ${_crunchide} \
1958    ${_crunchgen} \
1959    ${_nmtree} \
1960    ${_vtfontcvt} \
1961    usr.bin/localedef
1962${_bt}-${_tool}: .PHONY .MAKE
1963	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1964		cd ${.CURDIR}/${_tool}; \
1965		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
1966		${MAKE} DIRPRFX=${_tool}/ all; \
1967		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1968
1969bootstrap-tools: ${_bt}-${_tool}
1970.endfor
1971
1972#
1973# build-tools: Build special purpose build tools
1974#
1975.if !defined(NO_SHARE)
1976_share=	share/syscons/scrnmaps
1977.endif
1978
1979.if ${MK_GCC} != "no"
1980_gcc_tools= gnu/usr.bin/cc/cc_tools
1981.endif
1982
1983.if ${MK_RESCUE} != "no"
1984# rescue includes programs that have build-tools targets
1985_rescue=rescue/rescue
1986.endif
1987
1988.if ${MK_TCSH} != "no"
1989_tcsh=bin/csh
1990.endif
1991
1992.for _tool in \
1993    ${_tcsh} \
1994    bin/sh \
1995    ${LOCAL_TOOL_DIRS} \
1996    lib/ncurses/ncurses \
1997    lib/ncurses/ncursesw \
1998    ${_rescue} \
1999    ${_share} \
2000    usr.bin/awk \
2001    lib/libmagic \
2002    usr.bin/mkesdb_static \
2003    usr.bin/mkcsmapper_static \
2004    usr.bin/vi/catalog
2005build-tools_${_tool}: .PHONY
2006	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
2007		cd ${.CURDIR}/${_tool}; \
2008		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2009		${MAKE} DIRPRFX=${_tool}/ build-tools
2010build-tools: build-tools_${_tool}
2011.endfor
2012.for _tool in \
2013    ${_gcc_tools}
2014build-tools_${_tool}: .PHONY
2015	${_+_}@${ECHODIR} "===> ${_tool} (obj,all)"; \
2016		cd ${.CURDIR}/${_tool}; \
2017		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2018		${MAKE} DIRPRFX=${_tool}/ all
2019build-tools: build-tools_${_tool}
2020.endfor
2021
2022#
2023# kernel-tools: Build kernel-building tools
2024#
2025kernel-tools: .PHONY
2026	mkdir -p ${MAKEOBJDIRPREFIX}/usr
2027	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2028	    -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
2029
2030#
2031# cross-tools: All the tools needed to build the rest of the system after
2032# we get done with the earlier stages. It is the last set of tools needed
2033# to begin building the target binaries.
2034#
2035.if ${TARGET_ARCH} != ${MACHINE_ARCH}
2036.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
2037_btxld=		usr.sbin/btxld
2038.endif
2039.endif
2040
2041# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
2042# resulting from missing bug fixes or ELF Toolchain updates.
2043.if ${MK_CDDL} != "no"
2044_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
2045    cddl/usr.bin/ctfmerge
2046.endif
2047
2048# If we're given an XAS, don't build binutils.
2049.if ${XAS:M/*} == ""
2050.if ${MK_BINUTILS_BOOTSTRAP} != "no"
2051_binutils=	gnu/usr.bin/binutils
2052.endif
2053.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2054_elftctools=	lib/libelftc \
2055		lib/libpe \
2056		usr.bin/elfcopy \
2057		usr.bin/nm \
2058		usr.bin/size \
2059		usr.bin/strings
2060# These are not required by the build, but can be useful for developers who
2061# cross-build on a FreeBSD 10 host:
2062_elftctools+=	usr.bin/addr2line
2063.endif
2064.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
2065# If cross-building with an external binutils we still need to build strip for
2066# the target (for at least crunchide).
2067_elftctools=	lib/libelftc \
2068		lib/libpe \
2069		usr.bin/elfcopy
2070.endif
2071
2072.if ${MK_CLANG_BOOTSTRAP} != "no"
2073_clang=		usr.bin/clang
2074.endif
2075.if ${MK_LLD_BOOTSTRAP} != "no"
2076_lld=		usr.bin/clang/lld
2077.endif
2078.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no"
2079_clang_libs=	lib/clang
2080.endif
2081.if ${MK_GCC_BOOTSTRAP} != "no"
2082_gcc=		gnu/usr.bin/cc
2083.endif
2084.if ${MK_USB} != "no"
2085_usb_tools=	sys/boot/usb/tools
2086.endif
2087
2088cross-tools: .MAKE .PHONY
2089.for _tool in \
2090    ${LOCAL_XTOOL_DIRS} \
2091    ${_clang_libs} \
2092    ${_clang} \
2093    ${_lld} \
2094    ${_binutils} \
2095    ${_elftctools} \
2096    ${_dtrace_tools} \
2097    ${_gcc} \
2098    ${_btxld} \
2099    ${_usb_tools}
2100	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2101		cd ${.CURDIR}/${_tool}; \
2102		if [ -z "${NO_OBJ}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \
2103		${MAKE} DIRPRFX=${_tool}/ all; \
2104		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
2105.endfor
2106
2107NXBDESTDIR=	${OBJTREE}/nxb-bin
2108NXBENV=		MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
2109		TOOLS_PREFIX= \
2110		INSTALL="sh ${.CURDIR}/tools/install.sh" \
2111		PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
2112NXBMAKE=	${NXBENV} ${MAKE} \
2113		LLVM_TBLGEN=${NXBDESTDIR}/usr/bin/llvm-tblgen \
2114		CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \
2115		MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
2116		MK_GDB=no MK_TESTS=no \
2117		SSP_CFLAGS= \
2118		MK_HTML=no NO_LINT=yes MK_MAN=no MK_MAN_UTILS=yes \
2119		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
2120		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
2121		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
2122		MK_LLDB=no MK_DEBUG_FILES=no
2123
2124# native-xtools is the current target for qemu-user cross builds of ports
2125# via poudriere and the imgact_binmisc kernel module.
2126# For non-clang enabled targets that are still using the in tree gcc
2127# we must build a gperf binary for one instance of its Makefiles.  On
2128# clang-enabled systems, the gperf binary is obsolete.
2129native-xtools: .PHONY
2130.if ${MK_GCC_BOOTSTRAP} != "no"
2131	mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
2132	${_+_}@${ECHODIR} "===> ${_gperf} (obj,all,install)"; \
2133	cd ${.CURDIR}/${_gperf}; \
2134	if [ -z "${NO_OBJ}" ]; then ${NXBMAKE} DIRPRFX=${_gperf}/ obj; fi; \
2135	${NXBMAKE} DIRPRFX=${_gperf}/ all; \
2136	${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
2137.endif
2138	mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
2139	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2140	    -p ${NXBDESTDIR}/usr >/dev/null
2141	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2142	    -p ${NXBDESTDIR}/usr/include >/dev/null
2143.if ${MK_DEBUG_FILES} != "no"
2144	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
2145	    -p ${NXBDESTDIR}/usr/lib >/dev/null
2146.endif
2147.for _tool in \
2148    bin/cat \
2149    bin/chmod \
2150    bin/cp \
2151    ${_tcsh} \
2152    bin/echo \
2153    bin/expr \
2154    bin/hostname \
2155    bin/ln \
2156    bin/ls \
2157    bin/mkdir \
2158    bin/mv \
2159    bin/ps \
2160    bin/realpath \
2161    bin/rm \
2162    bin/rmdir \
2163    bin/sh \
2164    bin/sleep \
2165    ${_clang_tblgen} \
2166    usr.bin/ar \
2167    ${_binutils} \
2168    ${_elftctools} \
2169    ${_gcc} \
2170    ${_gcc_tools} \
2171    ${_clang_libs} \
2172    ${_clang} \
2173    ${_lld} \
2174    sbin/md5 \
2175    sbin/sysctl \
2176    usr.bin/diff \
2177    usr.bin/awk \
2178    usr.bin/basename \
2179    usr.bin/bmake \
2180    usr.bin/bzip2 \
2181    usr.bin/cmp \
2182    usr.bin/dirname \
2183    usr.bin/env \
2184    usr.bin/fetch \
2185    usr.bin/find \
2186    usr.bin/grep \
2187    usr.bin/gzip \
2188    usr.bin/id \
2189    usr.bin/lex \
2190    usr.bin/limits \
2191    usr.bin/lorder \
2192    ${_libopenbsd} \
2193    ${_makewhatis} \
2194    usr.bin/mktemp \
2195    usr.bin/mt \
2196    usr.bin/patch \
2197    usr.bin/readelf \
2198    usr.bin/sed \
2199    usr.bin/sort \
2200    usr.bin/tar \
2201    usr.bin/touch \
2202    usr.bin/tr \
2203    usr.bin/true \
2204    usr.bin/uniq \
2205    usr.bin/unzip \
2206    usr.bin/xargs \
2207    usr.bin/xinstall \
2208    usr.bin/xz \
2209    usr.bin/yacc \
2210    usr.sbin/chown
2211	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2212		cd ${.CURDIR}/${_tool}; \
2213		if [ -z "${NO_OBJ}" ]; then ${NXBMAKE} DIRPRFX=${_tool}/ obj; fi; \
2214		${NXBMAKE} DIRPRFX=${_tool}/ all; \
2215		${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${NXBDESTDIR} install
2216.endfor
2217
2218#
2219# hierarchy - ensure that all the needed directories are present
2220#
2221hierarchy hier: .MAKE .PHONY
2222	${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
2223
2224#
2225# libraries - build all libraries, and install them under ${DESTDIR}.
2226#
2227# The list of libraries with dependents (${_prebuild_libs}) and their
2228# interdependencies (__L) are built automatically by the
2229# ${.CURDIR}/tools/make_libdeps.sh script.
2230#
2231libraries: .MAKE .PHONY
2232	${_+_}cd ${.CURDIR}; \
2233	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
2234	    ${MAKE} -f Makefile.inc1 _startup_libs; \
2235	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
2236	    ${MAKE} -f Makefile.inc1 _generic_libs
2237
2238#
2239# static libgcc.a prerequisite for shared libc
2240#
2241_prereq_libs= lib/libcompiler_rt
2242.if ${MK_SSP} != "no"
2243_prereq_libs+= gnu/lib/libssp/libssp_nonshared
2244.endif
2245
2246# These dependencies are not automatically generated:
2247#
2248# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
2249# all shared libraries for ELF.
2250#
2251_startup_libs=	gnu/lib/csu
2252_startup_libs+=	lib/csu
2253_startup_libs+=	lib/libcompiler_rt
2254_startup_libs+=	lib/libc
2255_startup_libs+=	lib/libc_nonshared
2256.if ${MK_LIBCPLUSPLUS} != "no"
2257_startup_libs+=	lib/libcxxrt
2258.endif
2259
2260.if ${MK_LLVM_LIBUNWIND} != "no"
2261_prereq_libs+=	lib/libgcc_eh lib/libgcc_s
2262_startup_libs+=	lib/libgcc_eh lib/libgcc_s
2263
2264lib/libgcc_s__L: lib/libc__L
2265lib/libgcc_s__L: lib/libc_nonshared__L
2266.if ${MK_LIBCPLUSPLUS} != "no"
2267lib/libcxxrt__L: lib/libgcc_s__L
2268.endif
2269
2270.else # MK_LLVM_LIBUNWIND == no
2271
2272_prereq_libs+=	gnu/lib/libgcc
2273_startup_libs+=	gnu/lib/libgcc
2274
2275gnu/lib/libgcc__L: lib/libc__L
2276gnu/lib/libgcc__L: lib/libc_nonshared__L
2277.if ${MK_LIBCPLUSPLUS} != "no"
2278lib/libcxxrt__L: gnu/lib/libgcc__L
2279.endif
2280.endif
2281
2282_prebuild_libs=	${_kerberos5_lib_libasn1} \
2283		${_kerberos5_lib_libhdb} \
2284		${_kerberos5_lib_libheimbase} \
2285		${_kerberos5_lib_libheimntlm} \
2286		${_libsqlite3} \
2287		${_kerberos5_lib_libheimipcc} \
2288		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
2289		${_kerberos5_lib_libroken} \
2290		${_kerberos5_lib_libwind} \
2291		lib/libbz2 ${_libcom_err} lib/libcrypt \
2292		lib/libelf lib/libexpat \
2293		lib/libfigpar \
2294		${_lib_libgssapi} \
2295		lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
2296		${_lib_casper} \
2297		lib/ncurses/ncurses lib/ncurses/ncursesw \
2298		lib/libopie lib/libpam/libpam ${_lib_libthr} \
2299		${_lib_libradius} lib/libsbuf lib/libtacplus \
2300		lib/libgeom \
2301		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
2302		${_cddl_lib_libuutil} \
2303		${_cddl_lib_libavl} \
2304		${_cddl_lib_libzfs_core} \
2305		${_cddl_lib_libctf} \
2306		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
2307		${_secure_lib_libcrypto} ${_lib_libldns} \
2308		${_secure_lib_libssh} ${_secure_lib_libssl}
2309
2310.if ${MK_GNUCXX} != "no"
2311_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
2312gnu/lib/libstdc++__L: lib/msun__L
2313gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
2314.endif
2315
2316.if ${MK_DIALOG} != "no"
2317_prebuild_libs+= gnu/lib/libdialog
2318gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
2319.endif
2320
2321.if ${MK_LIBCPLUSPLUS} != "no"
2322_prebuild_libs+= lib/libc++
2323.endif
2324
2325lib/libgeom__L: lib/libexpat__L
2326lib/libkvm__L: lib/libelf__L
2327
2328.if ${MK_LIBTHR} != "no"
2329_lib_libthr=	lib/libthr
2330.endif
2331
2332.if ${MK_RADIUS_SUPPORT} != "no"
2333_lib_libradius=	lib/libradius
2334.endif
2335
2336.if ${MK_OFED} != "no"
2337_ofed_lib=		contrib/ofed/usr.lib
2338_prebuild_libs+=	contrib/ofed/usr.lib/libosmcomp
2339_prebuild_libs+=	contrib/ofed/usr.lib/libopensm
2340_prebuild_libs+=	contrib/ofed/usr.lib/libibcommon
2341_prebuild_libs+=	contrib/ofed/usr.lib/libibverbs
2342_prebuild_libs+=	contrib/ofed/usr.lib/libibumad
2343
2344contrib/ofed/usr.lib/libopensm__L: lib/libthr__L
2345contrib/ofed/usr.lib/libosmcomp__L: lib/libthr__L
2346contrib/ofed/usr.lib/libibumad__L: contrib/ofed/usr.lib/libibcommon__L
2347.endif
2348
2349.if ${MK_CASPER} != "no"
2350_lib_casper=	lib/libcasper
2351.endif
2352
2353lib/libpjdlog__L: lib/libutil__L
2354lib/libcasper__L: lib/libnv__L
2355lib/liblzma__L: lib/libthr__L
2356
2357_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
2358.for _DIR in ${LOCAL_LIB_DIRS}
2359.if exists(${.CURDIR}/${_DIR}/Makefile) && empty(_generic_libs:M${_DIR})
2360_generic_libs+= ${_DIR}
2361.endif
2362.endfor
2363
2364lib/libopie__L lib/libtacplus__L: lib/libmd__L
2365
2366.if ${MK_CDDL} != "no"
2367_cddl_lib_libumem= cddl/lib/libumem
2368_cddl_lib_libnvpair= cddl/lib/libnvpair
2369_cddl_lib_libavl= cddl/lib/libavl
2370_cddl_lib_libuutil= cddl/lib/libuutil
2371.if ${MK_ZFS} != "no"
2372_cddl_lib_libzfs_core= cddl/lib/libzfs_core
2373cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
2374.endif
2375_cddl_lib_libctf= cddl/lib/libctf
2376_cddl_lib= cddl/lib
2377cddl/lib/libctf__L: lib/libz__L
2378.endif
2379# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
2380# on select architectures though (see cddl/lib/Makefile)
2381.if ${MACHINE_CPUARCH} != "sparc64"
2382_prebuild_libs+=	lib/libprocstat lib/libproc lib/librtld_db
2383lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L
2384lib/libproc__L: lib/libprocstat__L
2385lib/librtld_db__L: lib/libprocstat__L
2386.endif
2387
2388.if ${MK_CRYPT} != "no"
2389.if ${MK_OPENSSL} != "no"
2390_secure_lib_libcrypto= secure/lib/libcrypto
2391_secure_lib_libssl= secure/lib/libssl
2392lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
2393.if ${MK_LDNS} != "no"
2394_lib_libldns= lib/libldns
2395lib/libldns__L: secure/lib/libcrypto__L
2396.endif
2397.if ${MK_OPENSSH} != "no"
2398_secure_lib_libssh= secure/lib/libssh
2399secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
2400.if ${MK_LDNS} != "no"
2401secure/lib/libssh__L: lib/libldns__L
2402.endif
2403.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no"
2404secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
2405    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
2406    lib/libmd__L kerberos5/lib/libroken__L
2407.endif
2408.endif
2409.endif
2410_secure_lib=	secure/lib
2411.endif
2412
2413.if ${MK_KERBEROS} != "no"
2414kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
2415kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2416    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
2417    kerberos5/lib/libwind__L lib/libsqlite3__L
2418kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
2419    kerberos5/lib/libroken__L lib/libcom_err__L
2420kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2421    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
2422kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2423    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
2424    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
2425    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
2426kerberos5/lib/libroken__L: lib/libcrypt__L
2427kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
2428kerberos5/lib/libheimbase__L: lib/libthr__L
2429kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
2430.endif
2431
2432lib/libsqlite3__L: lib/libthr__L
2433
2434.if ${MK_GSSAPI} != "no"
2435_lib_libgssapi=	lib/libgssapi
2436.endif
2437
2438.if ${MK_KERBEROS} != "no"
2439_kerberos5_lib=	kerberos5/lib
2440_kerberos5_lib_libasn1= kerberos5/lib/libasn1
2441_kerberos5_lib_libhdb= kerberos5/lib/libhdb
2442_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
2443_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
2444_kerberos5_lib_libhx509= kerberos5/lib/libhx509
2445_kerberos5_lib_libroken= kerberos5/lib/libroken
2446_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
2447_libsqlite3= lib/libsqlite3
2448_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
2449_kerberos5_lib_libwind= kerberos5/lib/libwind
2450_libcom_err= lib/libcom_err
2451.endif
2452
2453.if ${MK_NIS} != "no"
2454_lib_libypclnt=	lib/libypclnt
2455.endif
2456
2457.if ${MK_OPENSSL} == "no"
2458lib/libradius__L: lib/libmd__L
2459.endif
2460
2461lib/libproc__L: \
2462    ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
2463.if ${MK_CXX} != "no"
2464.if ${MK_LIBCPLUSPLUS} != "no"
2465lib/libproc__L: lib/libcxxrt__L
2466.else # This implies MK_GNUCXX != "no"; see lib/libproc
2467lib/libproc__L: gnu/lib/libsupc++__L
2468.endif
2469.endif
2470
2471.for _lib in ${_prereq_libs}
2472${_lib}__PL: .PHONY .MAKE
2473.if exists(${.CURDIR}/${_lib})
2474	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2475		cd ${.CURDIR}/${_lib}; \
2476		if [ -z "${NO_OBJ}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
2477		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2478		    DIRPRFX=${_lib}/ all; \
2479		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2480		    DIRPRFX=${_lib}/ install
2481.endif
2482.endfor
2483
2484.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
2485${_lib}__L: .PHONY .MAKE
2486.if exists(${.CURDIR}/${_lib})
2487	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2488		cd ${.CURDIR}/${_lib}; \
2489		if [ -z "${NO_OBJ}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \
2490		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
2491		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
2492.endif
2493.endfor
2494
2495_prereq_libs: ${_prereq_libs:S/$/__PL/}
2496_startup_libs: ${_startup_libs:S/$/__L/}
2497_prebuild_libs: ${_prebuild_libs:S/$/__L/}
2498_generic_libs: ${_generic_libs:S/$/__L/}
2499
2500# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
2501# 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
2502# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
2503# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
2504# parallel.  This is safe for the world stage of buildworld though since it has
2505# already built libraries in a proper order and installed includes into
2506# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
2507# avoid trashing a system if it crashes mid-install.
2508.if !make(all) || defined(_PARALLEL_SUBDIR_OK)
2509SUBDIR_PARALLEL=
2510.endif
2511
2512.include <bsd.subdir.mk>
2513
2514.if make(check-old) || make(check-old-dirs) || \
2515    make(check-old-files) || make(check-old-libs) || \
2516    make(delete-old) || make(delete-old-dirs) || \
2517    make(delete-old-files) || make(delete-old-libs)
2518
2519#
2520# check for / delete old files section
2521#
2522
2523.include "ObsoleteFiles.inc"
2524
2525OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
2526else you can not start such an application. Consult UPDATING for more \
2527information regarding how to cope with the removal/revision bump of a \
2528specific library."
2529
2530.if !defined(BATCH_DELETE_OLD_FILES)
2531RM_I=-i
2532.else
2533RM_I=-v
2534.endif
2535
2536delete-old-files: .PHONY
2537	@echo ">>> Removing old files (only deletes safe to delete libs)"
2538# Ask for every old file if the user really wants to remove it.
2539# It's annoying, but better safe than sorry.
2540# NB: We cannot pass the list of OLD_FILES as a parameter because the
2541# argument list will get too long. Using .for/.endfor make "loops" will make
2542# the Makefile parser segfault.
2543	@exec 3<&0; \
2544	cd ${.CURDIR}; \
2545	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2546	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2547	while read file; do \
2548		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2549			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2550			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2551		fi; \
2552		for ext in debug symbols; do \
2553		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2554		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2555			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2556			      <&3; \
2557		  fi; \
2558		done; \
2559	done
2560# Remove catpages without corresponding manpages.
2561	@exec 3<&0; \
2562	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2563	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2564	while read catpage; do \
2565		read manpage; \
2566		if [ ! -e "$${manpage}" ]; then \
2567			rm ${RM_I} $${catpage} <&3; \
2568	        fi; \
2569	done
2570	@echo ">>> Old files removed"
2571
2572check-old-files: .PHONY
2573	@echo ">>> Checking for old files"
2574	@cd ${.CURDIR}; \
2575	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2576	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2577	while read file; do \
2578		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2579		 	echo "${DESTDIR}/$${file}"; \
2580		fi; \
2581		for ext in debug symbols; do \
2582		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2583			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2584		  fi; \
2585		done; \
2586	done
2587# Check for catpages without corresponding manpages.
2588	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2589	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2590	while read catpage; do \
2591		read manpage; \
2592		if [ ! -e "$${manpage}" ]; then \
2593			echo $${catpage}; \
2594	        fi; \
2595	done
2596
2597delete-old-libs: .PHONY
2598	@echo ">>> Removing old libraries"
2599	@echo "${OLD_LIBS_MESSAGE}" | fmt
2600	@exec 3<&0; \
2601	cd ${.CURDIR}; \
2602	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2603	    -V OLD_LIBS | xargs -n1 | \
2604	while read file; do \
2605		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2606			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2607			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2608		fi; \
2609		for ext in debug symbols; do \
2610		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2611		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2612			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2613			      <&3; \
2614		  fi; \
2615		done; \
2616	done
2617	@echo ">>> Old libraries removed"
2618
2619check-old-libs: .PHONY
2620	@echo ">>> Checking for old libraries"
2621	@cd ${.CURDIR}; \
2622	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2623	    -V OLD_LIBS | xargs -n1 | \
2624	while read file; do \
2625		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2626			echo "${DESTDIR}/$${file}"; \
2627		fi; \
2628		for ext in debug symbols; do \
2629		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2630			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2631		  fi; \
2632		done; \
2633	done
2634
2635delete-old-dirs: .PHONY
2636	@echo ">>> Removing old directories"
2637	@cd ${.CURDIR}; \
2638	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2639	    -V OLD_DIRS | xargs -n1 | sort -r | \
2640	while read dir; do \
2641		if [ -d "${DESTDIR}/$${dir}" ]; then \
2642			rmdir -v "${DESTDIR}/$${dir}" || true; \
2643		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2644			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2645		fi; \
2646		if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2647			rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \
2648		elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2649			echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
2650		fi; \
2651	done
2652	@echo ">>> Old directories removed"
2653
2654check-old-dirs: .PHONY
2655	@echo ">>> Checking for old directories"
2656	@cd ${.CURDIR}; \
2657	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2658	    -V OLD_DIRS | xargs -n1 | \
2659	while read dir; do \
2660		if [ -d "${DESTDIR}/$${dir}" ]; then \
2661			echo "${DESTDIR}/$${dir}"; \
2662		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2663			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2664		fi; \
2665		if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2666			echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \
2667		elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \
2668			echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \
2669		fi; \
2670	done
2671
2672delete-old: delete-old-files delete-old-dirs .PHONY
2673	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
2674
2675check-old: check-old-files check-old-libs check-old-dirs .PHONY
2676	@echo "To remove old files and directories run '${MAKE_CMD} delete-old'."
2677	@echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'."
2678
2679.endif
2680
2681#
2682# showconfig - show build configuration.
2683#
2684showconfig: .PHONY
2685	@(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \
2686	  ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u
2687
2688.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2689DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2690
2691.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2692.if exists(${KERNCONFDIR}/${KERNCONF})
2693FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2694	'${KERNCONFDIR}/${KERNCONF}' ; echo
2695.endif
2696.endif
2697
2698.endif
2699
2700.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2701DTBOUTPUTPATH= ${.CURDIR}
2702.endif
2703
2704#
2705# Build 'standalone' Device Tree Blob
2706#
2707builddtb: .PHONY
2708	@PATH=${TMPPATH} MACHINE=${TARGET} \
2709	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2710	    "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2711
2712###############
2713
2714# cleanworld
2715# In the following, the first 'rm' in a series will usually remove all
2716# files and directories.  If it does not, then there are probably some
2717# files with file flags set, so this unsets them and tries the 'rm' a
2718# second time.  There are situations where this target will be cleaning
2719# some directories via more than one method, but that duplication is
2720# needed to correctly handle all the possible situations.  Removing all
2721# files without file flags set in the first 'rm' instance saves time,
2722# because 'chflags' will need to operate on fewer files afterwards.
2723#
2724# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
2725# created by bsd.obj.mk, except that we don't want to .include that file
2726# in this makefile.
2727#
2728BW_CANONICALOBJDIR:=${OBJTREE}${.CURDIR}
2729cleanworld: .PHONY
2730.if exists(${BW_CANONICALOBJDIR}/)
2731	-rm -rf ${BW_CANONICALOBJDIR}/*
2732	-chflags -R 0 ${BW_CANONICALOBJDIR}
2733	rm -rf ${BW_CANONICALOBJDIR}/*
2734.endif
2735.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
2736	#   To be safe in this case, fall back to a 'make cleandir'
2737	${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
2738.endif
2739
2740.if defined(TARGET) && defined(TARGET_ARCH)
2741
2742.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2743XDEV_CPUTYPE?=${CPUTYPE}
2744.else
2745XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2746.endif
2747
2748NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2749	MK_MAN=no MK_NLS=no MK_PROFILE=no \
2750	MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2751	TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2752	CPUTYPE=${XDEV_CPUTYPE}
2753
2754XDDIR=${TARGET_ARCH}-freebsd
2755XDTP?=/usr/${XDDIR}
2756.if ${XDTP:N/*}
2757.error XDTP variable should be an absolute path
2758.endif
2759
2760CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2761	INSTALL="sh ${.CURDIR}/tools/install.sh"
2762CDENV= ${CDBENV} \
2763	TOOLS_PREFIX=${XDTP}
2764
2765.if ${WANT_COMPILER_TYPE} == gcc || \
2766    (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
2767# GCC requires -isystem and -L when using a cross-compiler.  --sysroot
2768# won't set header path and -L is used to ensure the base library path
2769# is added before the port PREFIX library path.
2770CD2CFLAGS+=	-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib
2771# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
2772# combined with --sysroot.
2773CD2CFLAGS+=	-B${XDDESTDIR}/usr/lib
2774# Force using libc++ for external GCC.
2775.if ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800
2776CD2CXXFLAGS+=	-isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \
2777		-nostdinc++
2778.endif
2779.endif
2780CD2CFLAGS+=	--sysroot=${XDDESTDIR}/
2781CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \
2782	CPP="${CPP} ${CD2CFLAGS}" \
2783	MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2784
2785CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2786CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2787CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2788.if ${MK_META_MODE} != "no"
2789# Don't rebuild build-tools targets during normal build.
2790CD2MAKE+=	BUILD_TOOLS_META=.NOMETA
2791.endif
2792XDDESTDIR=${DESTDIR}/${XDTP}
2793
2794.ORDER: xdev-build xdev-install xdev-links
2795xdev: xdev-build xdev-install .PHONY
2796
2797.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2798xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY
2799
2800_xb-worldtmp: .PHONY
2801	mkdir -p ${CDTMP}/usr
2802	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2803	    -p ${CDTMP}/usr >/dev/null
2804
2805_xb-bootstrap-tools: .PHONY
2806.for _tool in \
2807    ${_clang_tblgen} \
2808    ${_gperf} \
2809    ${_yacc}
2810	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2811	cd ${.CURDIR}/${_tool}; \
2812	if [ -z "${NO_OBJ}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
2813	${CDMAKE} DIRPRFX=${_tool}/ all; \
2814	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2815.endfor
2816
2817_xb-build-tools: .PHONY
2818	${_+_}@cd ${.CURDIR}; \
2819	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2820
2821_xb-cross-tools: .PHONY
2822.for _tool in \
2823    ${_binutils} \
2824    ${_elftctools} \
2825    usr.bin/ar \
2826    ${_clang_libs} \
2827    ${_clang} \
2828    ${_gcc}
2829	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \
2830	cd ${.CURDIR}/${_tool}; \
2831	if [ -z "${NO_OBJ}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \
2832	${CDMAKE} DIRPRFX=${_tool}/ all
2833.endfor
2834
2835_xi-mtree: .PHONY
2836	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2837	mkdir -p ${XDDESTDIR}
2838	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2839	    -p ${XDDESTDIR} >/dev/null
2840	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2841	    -p ${XDDESTDIR}/usr >/dev/null
2842	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2843	    -p ${XDDESTDIR}/usr/include >/dev/null
2844.if defined(LIBCOMPAT)
2845	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
2846	    -p ${XDDESTDIR}/usr >/dev/null
2847.endif
2848.if ${MK_TESTS} != "no"
2849	mkdir -p ${XDDESTDIR}${TESTSBASE}
2850	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2851	    -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2852.endif
2853
2854.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2855xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY
2856
2857_xi-cross-tools: .PHONY
2858	@echo "_xi-cross-tools"
2859.for _tool in \
2860    ${_binutils} \
2861    ${_elftctools} \
2862    usr.bin/ar \
2863    ${_clang_libs} \
2864    ${_clang} \
2865    ${_gcc}
2866	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2867	cd ${.CURDIR}/${_tool}; \
2868	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2869.endfor
2870
2871_xi-includes: .PHONY
2872	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
2873		DESTDIR=${XDDESTDIR}
2874
2875_xi-libraries: .PHONY
2876	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2877		DESTDIR=${XDDESTDIR}
2878
2879xdev-links: .PHONY
2880	${_+_}cd ${XDDESTDIR}/usr/bin; \
2881	mkdir -p ../../../../usr/bin; \
2882		for i in *; do \
2883			ln -sf ../../${XDTP}/usr/bin/$$i \
2884			    ../../../../usr/bin/${XDDIR}-$$i; \
2885			ln -sf ../../${XDTP}/usr/bin/$$i \
2886			    ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \
2887		done
2888.else
2889xdev xdev-build xdev-install xdev-links: .PHONY
2890	@echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2891.endif
2892