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