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