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