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