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