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