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