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