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