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