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