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