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