Makefile.inc1 revision 270187
1#
2# $FreeBSD: stable/10/Makefile.inc1 270187 2014-08-19 23:33:51Z 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.if ${MK_TESTS} != "no"
783EXTRA_DISTRIBUTIONS+=	tests
784.endif
785
786MTREE_MAGIC?=	mtree 2.0
787
788distributeworld installworld: _installcheck_world
789	mkdir -p ${INSTALLTMP}
790	progs=$$(for prog in ${ITOOLS}; do \
791		if progpath=`which $$prog`; then \
792			echo $$progpath; \
793		else \
794			echo "Required tool $$prog not found in PATH." >&2; \
795			exit 1; \
796		fi; \
797	    done); \
798	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
799	    while read line; do \
800		set -- $$line; \
801		if [ "$$2 $$3" != "not found" ]; then \
802			echo $$2; \
803		else \
804			echo "Required library $$1 not found." >&2; \
805			exit 1; \
806		fi; \
807	    done); \
808	cp $$libs $$progs ${INSTALLTMP}
809	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
810.if defined(NO_ROOT)
811	echo "#${MTREE_MAGIC}" > ${METALOG}
812.endif
813.if make(distributeworld)
814.for dist in ${EXTRA_DISTRIBUTIONS}
815	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
816	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
817	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
818	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
819	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
820	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
821	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
822.if ${MK_DEBUG_FILES} != "no"
823	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
824	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
825.endif
826.if ${MK_TESTS} != "no" && ${dist} == "tests"
827	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
828	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
829.endif
830.if defined(NO_ROOT)
831	${IMAKEENV} nmtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
832	    sed -e 's#^\./#./${dist}/#' >> ${METALOG}
833	${IMAKEENV} nmtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
834	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
835	${IMAKEENV} nmtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
836	    sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
837.endif
838.endfor
839	-mkdir ${DESTDIR}/${DISTDIR}/base
840	cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
841	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
842	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
843	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
844.endif
845	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
846	    ${IMAKEENV} rm -rf ${INSTALLTMP}
847.if make(distributeworld)
848.for dist in ${EXTRA_DISTRIBUTIONS}
849	find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -empty -delete
850.endfor
851.if defined(NO_ROOT)
852.for dist in base ${EXTRA_DISTRIBUTIONS}
853	@# For each file that exists in this dist, print the corresponding
854	@# line from the METALOG.  This relies on the fact that
855	@# a line containing only the filename will sort immediatly before
856	@# the relevant mtree line.
857	cd ${DESTDIR}/${DISTDIR}; \
858	find ./${dist} | sort -u ${METALOG} - | \
859	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
860	${DESTDIR}/${DISTDIR}/${dist}.meta
861.endfor
862.if ${MK_DEBUG_FILES} != "no"
863. for dist in base ${EXTRA_DISTRIBUTIONS}
864	@# For each file that exists in this dist, print the corresponding
865	@# line from the METALOG.  This relies on the fact that
866	@# a line containing only the filename will sort immediatly before
867	@# the relevant mtree line.
868	cd ${DESTDIR}/${DISTDIR}; \
869	find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
870	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
871	${DESTDIR}/${DISTDIR}/${dist}.debug.meta
872. endfor
873.endif
874.endif
875.endif
876
877packageworld:
878.for dist in base ${EXTRA_DISTRIBUTIONS}
879.if defined(NO_ROOT)
880	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
881	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz \
882	    --exclude usr/lib/debug \
883	    @${DESTDIR}/${DISTDIR}/${dist}.meta
884.else
885	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
886	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz \
887	    --exclude usr/lib/debug .
888.endif
889.endfor
890
891.if ${MK_DEBUG_FILES} != "no"
892. for dist in base ${EXTRA_DISTRIBUTIONS}
893.  if defined(NO_ROOT)
894	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
895	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \
896	    @${DESTDIR}/${DISTDIR}/${dist}.debug.meta
897.  else
898	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
899	    tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \
900	    usr/lib/debug
901.  endif
902. endfor
903.endif
904
905#
906# reinstall
907#
908# If you have a build server, you can NFS mount the source and obj directories
909# and do a 'make reinstall' on the *client* to install new binaries from the
910# most recent server build.
911#
912reinstall:
913	@echo "--------------------------------------------------------------"
914	@echo ">>> Making hierarchy"
915	@echo "--------------------------------------------------------------"
916	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
917	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
918	@echo
919	@echo "--------------------------------------------------------------"
920	@echo ">>> Installing everything"
921	@echo "--------------------------------------------------------------"
922	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
923.if defined(LIB32TMP) && ${MK_LIB32} != "no"
924	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
925.endif
926
927redistribute:
928	@echo "--------------------------------------------------------------"
929	@echo ">>> Distributing everything"
930	@echo "--------------------------------------------------------------"
931	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
932.if defined(LIB32TMP) && ${MK_LIB32} != "no"
933	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
934	    DISTRIBUTION=lib32
935.endif
936
937distrib-dirs distribution:
938	cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
939	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
940
941#
942# buildkernel and installkernel
943#
944# Which kernels to build and/or install is specified by setting
945# KERNCONF. If not defined a GENERIC kernel is built/installed.
946# Only the existing (depending TARGET) config files are used
947# for building kernels and only the first of these is designated
948# as the one being installed.
949#
950# Note that we have to use TARGET instead of TARGET_ARCH when
951# we're in kernel-land. Since only TARGET_ARCH is (expected) to
952# be set to cross-build, we have to make sure TARGET is set
953# properly.
954
955.if defined(KERNFAST)
956NO_KERNELCLEAN=	t
957NO_KERNELCONFIG=	t
958NO_KERNELDEPEND=	t
959NO_KERNELOBJ=		t
960# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
961.if !defined(KERNCONF) && ${KERNFAST} != "1"
962KERNCONF=${KERNFAST}
963.endif
964.endif
965.if ${TARGET_ARCH} == "powerpc64"
966KERNCONF?=	GENERIC64
967.else
968KERNCONF?=	GENERIC
969.endif
970INSTKERNNAME?=	kernel
971
972KERNSRCDIR?=	${.CURDIR}/sys
973KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
974KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
975KERNCONFDIR?=	${KRNLCONFDIR}
976
977BUILDKERNELS=
978INSTALLKERNEL=
979.for _kernel in ${KERNCONF}
980.if exists(${KERNCONFDIR}/${_kernel})
981BUILDKERNELS+=	${_kernel}
982.if empty(INSTALLKERNEL)
983INSTALLKERNEL= ${_kernel}
984.endif
985.endif
986.endfor
987
988buildkernel ${WMAKE_TGTS} ${.ALLTARGETS:M_*}: .MAKE
989
990#
991# buildkernel
992#
993# Builds all kernels defined by BUILDKERNELS.
994#
995buildkernel:
996.if empty(BUILDKERNELS)
997	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
998	false
999.endif
1000	@echo
1001.for _kernel in ${BUILDKERNELS}
1002	@echo "--------------------------------------------------------------"
1003	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1004	@echo "--------------------------------------------------------------"
1005	@echo "===> ${_kernel}"
1006	mkdir -p ${KRNLOBJDIR}
1007.if !defined(NO_KERNELCONFIG)
1008	@echo
1009	@echo "--------------------------------------------------------------"
1010	@echo ">>> stage 1: configuring the kernel"
1011	@echo "--------------------------------------------------------------"
1012	cd ${KRNLCONFDIR}; \
1013		PATH=${TMPPATH} \
1014		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1015			-I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1016.endif
1017.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1018	@echo
1019	@echo "--------------------------------------------------------------"
1020	@echo ">>> stage 2.1: cleaning up the object tree"
1021	@echo "--------------------------------------------------------------"
1022	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1023.endif
1024.if !defined(NO_KERNELOBJ)
1025	@echo
1026	@echo "--------------------------------------------------------------"
1027	@echo ">>> stage 2.2: rebuilding the object tree"
1028	@echo "--------------------------------------------------------------"
1029	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1030.endif
1031	@echo
1032	@echo "--------------------------------------------------------------"
1033	@echo ">>> stage 2.3: build tools"
1034	@echo "--------------------------------------------------------------"
1035	cd ${KRNLOBJDIR}/${_kernel}; \
1036	    PATH=${BPATH}:${PATH} \
1037	    MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
1038	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \
1039	    -DEARLY_BUILD -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
1040# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
1041.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
1042.for target in obj depend all
1043	cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
1044	    PATH=${BPATH}:${PATH} \
1045	    MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
1046	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \
1047	    -DEARLY_BUILD ${target}
1048.endfor
1049.endif
1050.if !defined(NO_KERNELDEPEND)
1051	@echo
1052	@echo "--------------------------------------------------------------"
1053	@echo ">>> stage 3.1: making dependencies"
1054	@echo "--------------------------------------------------------------"
1055	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
1056.endif
1057	@echo
1058	@echo "--------------------------------------------------------------"
1059	@echo ">>> stage 3.2: building everything"
1060	@echo "--------------------------------------------------------------"
1061	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1062	@echo "--------------------------------------------------------------"
1063	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1064	@echo "--------------------------------------------------------------"
1065.endfor
1066
1067#
1068# installkernel, etc.
1069#
1070# Install the kernel defined by INSTALLKERNEL
1071#
1072installkernel installkernel.debug \
1073reinstallkernel reinstallkernel.debug: _installcheck_kernel
1074.if empty(INSTALLKERNEL)
1075	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1076	false
1077.endif
1078	@echo "--------------------------------------------------------------"
1079	@echo ">>> Installing kernel ${INSTALLKERNEL}"
1080	@echo "--------------------------------------------------------------"
1081	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1082	    ${CROSSENV} PATH=${TMPPATH} \
1083	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1084
1085distributekernel distributekernel.debug:
1086.if empty(INSTALLKERNEL)
1087	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1088	false
1089.endif
1090	mkdir -p ${DESTDIR}/${DISTDIR}
1091.if defined(NO_ROOT)
1092	echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1093.endif
1094	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1095	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1096	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1097	    DESTDIR=${INSTALL_DDIR}/kernel \
1098	    ${.TARGET:S/distributekernel/install/}
1099.if defined(NO_ROOT)
1100	sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1101	    ${DESTDIR}/${DISTDIR}/kernel.meta
1102.endif
1103.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
1104.if defined(NO_ROOT)
1105	echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1106.endif
1107	cd ${KRNLOBJDIR}/${_kernel}; \
1108	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1109	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1110	    KERNEL=${INSTKERNNAME}.${_kernel} \
1111	    DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1112	    ${.TARGET:S/distributekernel/install/}
1113.if defined(NO_ROOT)
1114	sed -e 's|^./kernel|.|' \
1115	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1116	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1117.endif
1118.endfor
1119
1120packagekernel:
1121.if defined(NO_ROOT)
1122	cd ${DESTDIR}/${DISTDIR}/kernel; \
1123	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz \
1124	    @${DESTDIR}/${DISTDIR}/kernel.meta
1125.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
1126	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1127	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz \
1128	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1129.endfor
1130.else
1131	cd ${DESTDIR}/${DISTDIR}/kernel; \
1132	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz .
1133.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
1134	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1135	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz .
1136.endfor
1137.endif
1138
1139#
1140# doxygen
1141#
1142# Build the API documentation with doxygen
1143#
1144doxygen:
1145	@if [ ! -x `/usr/bin/which doxygen` ]; then \
1146		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1147		exit 1; \
1148	fi
1149	cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
1150
1151#
1152# update
1153#
1154# Update the source tree(s), by running svn/svnup to update to the
1155# latest copy.
1156#
1157update:
1158.if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE)
1159	@echo "--------------------------------------------------------------"
1160	@echo "CVS_UPDATE and SUP_UPDATE are no longer supported."
1161	@echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated"
1162	@echo "--------------------------------------------------------------"
1163	@exit 1
1164.endif
1165.if defined(SVN_UPDATE)
1166	@echo "--------------------------------------------------------------"
1167	@echo ">>> Updating ${.CURDIR} using Subversion"
1168	@echo "--------------------------------------------------------------"
1169	@(cd ${.CURDIR} && ${SVN} update ${SVNFLAGS})
1170.endif
1171
1172#
1173# ------------------------------------------------------------------------
1174#
1175# From here onwards are utility targets used by the 'make world' and
1176# related targets.  If your 'world' breaks, you may like to try to fix
1177# the problem and manually run the following targets to attempt to
1178# complete the build.  Beware, this is *not* guaranteed to work, you
1179# need to have a pretty good grip on the current state of the system
1180# to attempt to manually finish it.  If in doubt, 'make world' again.
1181#
1182
1183#
1184# legacy: Build compatibility shims for the next three targets
1185#
1186legacy:
1187.if ${BOOTSTRAPPING} < 700055 && ${BOOTSTRAPPING} != 0
1188	@echo "ERROR: Source upgrades from versions prior to 7.0 not supported."; \
1189	false
1190.endif
1191.for _tool in tools/build
1192	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
1193	    cd ${.CURDIR}/${_tool} && \
1194	    ${MAKE} DIRPRFX=${_tool}/ obj && \
1195	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes && \
1196	    ${MAKE} DIRPRFX=${_tool}/ depend && \
1197	    ${MAKE} DIRPRFX=${_tool}/ all && \
1198	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1199.endfor
1200
1201#
1202# bootstrap-tools: Build tools needed for compatibility
1203#
1204.if ${MK_GAMES} != "no"
1205_strfile=	games/fortune/strfile
1206.endif
1207
1208.if ${MK_CXX} != "no"
1209_gperf=		gnu/usr.bin/gperf
1210.endif
1211
1212.if ${MK_GROFF} != "no"
1213_groff=		gnu/usr.bin/groff
1214.endif
1215
1216.if ${BOOTSTRAPPING} < 800022
1217_ar=		usr.bin/ar
1218.endif
1219
1220.if ${BOOTSTRAPPING} < 800013
1221_mklocale=	usr.bin/mklocale
1222.endif
1223
1224.if ${BOOTSTRAPPING} < 900002
1225_sed=		usr.bin/sed
1226.endif
1227
1228.if ${BOOTSTRAPPING} < 1000002
1229_m4=		lib/libohash \
1230		usr.bin/m4
1231.endif
1232
1233.if ${BOOTSTRAPPING} < 1000013
1234_yacc=		lib/liby \
1235		usr.bin/yacc
1236.endif
1237
1238.if ${BOOTSTRAPPING} < 1000014
1239_crunch=	usr.sbin/crunch
1240.endif
1241
1242.if ${BOOTSTRAPPING} < 1000026
1243_nmtree=	lib/libnetbsd \
1244		usr.sbin/nmtree
1245.endif
1246
1247.if ${BOOTSTRAPPING} < 1000027
1248_cat=		bin/cat
1249.endif
1250
1251.if ${BOOTSTRAPPING} < 1000033
1252_lex=		usr.bin/lex
1253.endif
1254
1255.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1256_awk=		usr.bin/awk
1257.endif
1258
1259.if ${MK_BSNMP} != "no" && !exists(/usr/sbin/gensnmptree)
1260_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1261.endif
1262
1263.if ${MK_CLANG} != "no"
1264_clang_tblgen= \
1265	lib/clang/libllvmsupport \
1266	lib/clang/libllvmtablegen \
1267	usr.bin/clang/tblgen \
1268	usr.bin/clang/clang-tblgen
1269.endif
1270
1271# dtrace tools are required for older bootstrap env and cross-build
1272.if ${MK_CDDL} != "no" && \
1273    ((${BOOTSTRAPPING} < 1000034 && \
1274          !(${BOOTSTRAPPING} >= 901505 && ${BOOTSTRAPPING} < 999999)) \
1275      || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH}))
1276_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
1277    lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1278.endif
1279
1280# Default to building the GPL DTC, but build the BSDL one if users explicitly
1281# request it.
1282_dtc= usr.bin/dtc
1283.if ${MK_GPL_DTC} != "no"
1284_dtc= gnu/usr.bin/dtc
1285.endif
1286
1287.if ${MK_KERBEROS} != "no"
1288_kerberos5_bootstrap_tools= \
1289	kerberos5/tools/make-roken \
1290	kerberos5/lib/libroken \
1291	kerberos5/lib/libvers \
1292	kerberos5/tools/asn1_compile \
1293	kerberos5/tools/slc \
1294	usr.bin/compile_et
1295.endif
1296
1297#	Please document (add comment) why something is in 'bootstrap-tools'.
1298#	Try to bound the building of the bootstrap-tool to just the
1299#	FreeBSD versions that need the tool built at this stage of the build.
1300bootstrap-tools: .MAKE
1301.for _tool in \
1302    ${_clang_tblgen} \
1303    ${_kerberos5_bootstrap_tools} \
1304    ${_dtrace_tools} \
1305    ${_strfile} \
1306    ${_gperf} \
1307    ${_groff} \
1308    ${_ar} \
1309    ${_dtc} \
1310    ${_awk} \
1311    ${_cat} \
1312    usr.bin/lorder \
1313    usr.bin/makewhatis \
1314    ${_mklocale} \
1315    usr.bin/rpcgen \
1316    ${_sed} \
1317    ${_yacc} \
1318    ${_m4} \
1319    ${_lex} \
1320    lib/libmd \
1321    usr.bin/xinstall \
1322    ${_gensnmptree} \
1323    usr.sbin/config \
1324    ${_crunch} \
1325    ${_nmtree}
1326	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1327		cd ${.CURDIR}/${_tool} && \
1328		${MAKE} DIRPRFX=${_tool}/ obj && \
1329		${MAKE} DIRPRFX=${_tool}/ depend && \
1330		${MAKE} DIRPRFX=${_tool}/ all && \
1331		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1332.endfor
1333
1334#
1335# build-tools: Build special purpose build tools
1336#
1337.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
1338_aicasm= sys/modules/aic7xxx/aicasm
1339.endif
1340
1341.if !defined(NO_SHARE)
1342_share=	share/syscons/scrnmaps
1343.endif
1344
1345.if ${MK_GCC} != "no"
1346_gcc_tools= gnu/usr.bin/cc/cc_tools
1347.endif
1348
1349.if ${MK_RESCUE} != "no"
1350_rescue= rescue/rescue
1351.endif
1352
1353build-tools: .MAKE
1354.for _tool in \
1355    bin/csh \
1356    bin/sh \
1357    ${_rescue} \
1358    ${LOCAL_TOOL_DIRS} \
1359    lib/ncurses/ncurses \
1360    lib/ncurses/ncursesw \
1361    ${_share} \
1362    ${_aicasm} \
1363    usr.bin/awk \
1364    lib/libmagic \
1365    usr.bin/mkesdb_static \
1366    usr.bin/mkcsmapper_static \
1367    usr.bin/vi/catalog
1368	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1369		cd ${.CURDIR}/${_tool} && \
1370		${MAKE} DIRPRFX=${_tool}/ obj && \
1371		${MAKE} DIRPRFX=${_tool}/ build-tools
1372.endfor
1373.for _tool in \
1374    ${_gcc_tools}
1375	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1376		cd ${.CURDIR}/${_tool} && \
1377		${MAKE} DIRPRFX=${_tool}/ obj && \
1378		${MAKE} DIRPRFX=${_tool}/ depend && \
1379		${MAKE} DIRPRFX=${_tool}/ all
1380.endfor
1381
1382#
1383# cross-tools: Build cross-building tools
1384#
1385.if !defined(TARGET_ARCH) && defined(XDEV_ARCH)
1386TARGET_ARCH=	${XDEV_ARCH}
1387.endif
1388.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1389.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1390_btxld=		usr.sbin/btxld
1391.endif
1392.endif
1393.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1394.if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1395_crunchide=	usr.sbin/crunch/crunchide
1396.endif
1397.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1398_kgzip=		usr.sbin/kgzip
1399.endif
1400.endif
1401
1402.if ${XAS:M/*} == "" && ${MK_BINUTILS} != "no"
1403_binutils=	gnu/usr.bin/binutils
1404.endif
1405
1406# If an full path to an external cross compiler is given, don't build
1407# a cross compiler.
1408.if ${XCC:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1409.if ${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang"
1410_clang=		usr.bin/clang
1411_clang_libs=	lib/clang
1412.else
1413_cc=		gnu/usr.bin/cc
1414.endif
1415
1416# The boot2 for pc98 requires gcc.
1417.if ${TARGET} == "pc98"
1418_cc=		gnu/usr.bin/cc
1419.endif
1420.endif
1421
1422cross-tools: .MAKE
1423.for _tool in \
1424    ${_clang_libs} \
1425    ${_clang} \
1426    ${_binutils} \
1427    ${_cc} \
1428    usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1429    ${_btxld} \
1430    ${_crunchide} \
1431    ${_kgzip}
1432	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1433		cd ${.CURDIR}/${_tool} && \
1434		${MAKE} DIRPRFX=${_tool}/ obj && \
1435		${MAKE} DIRPRFX=${_tool}/ depend && \
1436		${MAKE} DIRPRFX=${_tool}/ all && \
1437		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1438.endfor
1439
1440#
1441# hierarchy - ensure that all the needed directories are present
1442#
1443hierarchy hier:
1444	cd ${.CURDIR}/etc && ${HMAKE} distrib-dirs
1445
1446#
1447# libraries - build all libraries, and install them under ${DESTDIR}.
1448#
1449# The list of libraries with dependents (${_prebuild_libs}) and their
1450# interdependencies (__L) are built automatically by the
1451# ${.CURDIR}/tools/make_libdeps.sh script.
1452#
1453libraries: .MAKE
1454	cd ${.CURDIR} && \
1455	    ${MAKE} -f Makefile.inc1 _prereq_libs && \
1456	    ${MAKE} -f Makefile.inc1 _startup_libs && \
1457	    ${MAKE} -f Makefile.inc1 _prebuild_libs && \
1458	    ${MAKE} -f Makefile.inc1 _generic_libs
1459
1460#
1461# static libgcc.a prerequisite for shared libc
1462#
1463_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1464
1465# These dependencies are not automatically generated:
1466#
1467# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1468# all shared libraries for ELF.
1469#
1470_startup_libs=	gnu/lib/csu
1471.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1472_startup_libs+=	lib/csu/${MACHINE_ARCH}-elf
1473.elif exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
1474_startup_libs+=	lib/csu/${MACHINE_ARCH}
1475.else
1476_startup_libs+=	lib/csu/${MACHINE_CPUARCH}
1477.endif
1478_startup_libs+=	gnu/lib/libgcc
1479_startup_libs+=	lib/libcompiler_rt
1480_startup_libs+=	lib/libc
1481_startup_libs+=	lib/libc_nonshared
1482.if ${MK_LIBCPLUSPLUS} != "no"
1483_startup_libs+=	lib/libcxxrt
1484.endif
1485
1486gnu/lib/libgcc__L: lib/libc__L
1487gnu/lib/libgcc__L: lib/libc_nonshared__L
1488.if ${MK_LIBCPLUSPLUS} != "no"
1489lib/libcxxrt__L: gnu/lib/libgcc__L
1490.endif
1491
1492_prebuild_libs=	${_kerberos5_lib_libasn1} \
1493		${_kerberos5_lib_libhdb} \
1494		${_kerberos5_lib_libheimbase} \
1495		${_kerberos5_lib_libheimntlm} \
1496		${_kerberos5_lib_libheimsqlite} \
1497		${_kerberos5_lib_libheimipcc} \
1498		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1499		${_kerberos5_lib_libroken} \
1500		${_kerberos5_lib_libwind} \
1501		${_lib_atf} \
1502		lib/libbz2 ${_libcom_err} lib/libcrypt \
1503		lib/libelf lib/libexpat \
1504		${_lib_libgssapi} ${_lib_libipx} \
1505		lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1506		lib/ncurses/ncurses lib/ncurses/ncursesw \
1507		lib/libopie lib/libpam ${_lib_libthr} \
1508		lib/libradius lib/libsbuf lib/libtacplus \
1509		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1510		${_cddl_lib_libavl} \
1511		${_cddl_lib_libzfs_core} \
1512		lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1513		${_secure_lib_libcrypto} ${_lib_libldns} \
1514		${_secure_lib_libssh} ${_secure_lib_libssl}
1515.if ${MK_GNUCXX} != no
1516_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1517gnu/lib/libstdc++__L: lib/msun__L
1518.endif
1519
1520.if defined(WITH_ATF) || ${MK_TESTS} != "no"
1521.if !defined(WITH_ATF)
1522# Ensure that the ATF libraries will be built during make libraries, even
1523# though they will have -DNO_TESTS
1524MAKE+=		-DWITH_ATF
1525.endif
1526_lib_atf=	lib/atf
1527.endif
1528
1529.if ${MK_LIBTHR} != "no"
1530_lib_libthr=	lib/libthr
1531.endif
1532
1533.if ${MK_OFED} != "no"
1534_ofed_lib=	contrib/ofed/usr.lib/
1535.endif
1536
1537_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1538.for _DIR in ${LOCAL_LIB_DIRS}
1539.if exists(${.CURDIR}/${_DIR}/Makefile)
1540_generic_libs+= ${_DIR}
1541.endif
1542.endfor
1543
1544lib/libopie__L lib/libtacplus__L: lib/libmd__L
1545
1546.if ${MK_CDDL} != "no"
1547_cddl_lib_libumem= cddl/lib/libumem
1548_cddl_lib_libnvpair= cddl/lib/libnvpair
1549_cddl_lib_libavl= cddl/lib/libavl
1550_cddl_lib_libzfs_core= cddl/lib/libzfs_core
1551_cddl_lib= cddl/lib
1552cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1553.endif
1554
1555.if ${MK_CRYPT} != "no"
1556.if ${MK_OPENSSL} != "no"
1557_secure_lib_libcrypto= secure/lib/libcrypto
1558_secure_lib_libssl= secure/lib/libssl
1559lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1560.if ${MK_LDNS} != "no"
1561_lib_libldns= lib/libldns
1562lib/libldns__L: secure/lib/libcrypto__L
1563.endif
1564.if ${MK_OPENSSH} != "no"
1565_secure_lib_libssh= secure/lib/libssh
1566secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1567.if ${MK_LDNS} != "no"
1568secure/lib/libssh__L: lib/libldns__L
1569.endif
1570.if ${MK_KERBEROS_SUPPORT} != "no"
1571secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1572    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1573    lib/libmd__L kerberos5/lib/libroken__L
1574.endif
1575.endif
1576.endif
1577_secure_lib=	secure/lib
1578.endif
1579
1580.if ${MK_KERBEROS} != "no"
1581kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1582kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1583    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1584    kerberos5/lib/libwind__L kerberos5/lib/libheimsqlite__L 
1585kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1586    kerberos5/lib/libroken__L lib/libcom_err__L
1587kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1588    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1589kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1590    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1591    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1592    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1593kerberos5/lib/libroken__L: lib/libcrypt__L
1594kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1595kerberos5/lib/libheimbase__L: lib/libthr__L
1596kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1597kerberos5/lib/libheimsqlite__L: lib/libthr__L
1598.endif
1599
1600.if ${MK_GSSAPI} != "no"
1601_lib_libgssapi=	lib/libgssapi
1602.endif
1603
1604.if ${MK_IPX} != "no"
1605_lib_libipx=	lib/libipx
1606.endif
1607
1608.if ${MK_KERBEROS} != "no"
1609_kerberos5_lib=	kerberos5/lib
1610_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1611_kerberos5_lib_libhdb= kerberos5/lib/libhdb
1612_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1613_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1614_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1615_kerberos5_lib_libroken= kerberos5/lib/libroken
1616_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1617_kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite
1618_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1619_kerberos5_lib_libwind= kerberos5/lib/libwind
1620_libcom_err= lib/libcom_err
1621.endif
1622
1623.if ${MK_NIS} != "no"
1624_lib_libypclnt=	lib/libypclnt
1625.endif
1626
1627.if ${MK_OPENSSL} == "no"
1628lib/libradius__L: lib/libmd__L
1629.endif
1630
1631.for _lib in ${_prereq_libs}
1632${_lib}__PL: .PHONY .MAKE
1633.if exists(${.CURDIR}/${_lib})
1634	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1635		cd ${.CURDIR}/${_lib} && \
1636		${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ obj && \
1637		${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ depend && \
1638		${MAKE} -DNO_TESTS -DNO_PROFILE -DNO_PIC \
1639		    DIRPRFX=${_lib}/ all && \
1640		${MAKE} -DNO_TESTS -DNO_PROFILE -DNO_PIC \
1641		    DIRPRFX=${_lib}/ install
1642.endif
1643.endfor
1644
1645.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1646${_lib}__L: .PHONY .MAKE
1647.if exists(${.CURDIR}/${_lib})
1648	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1649		cd ${.CURDIR}/${_lib} && \
1650		${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ obj && \
1651		${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ depend && \
1652		${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ all && \
1653		${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ install
1654.endif
1655.endfor
1656
1657# libpam is special: we need to build static PAM modules before
1658# static PAM library, and dynamic PAM library before dynamic PAM
1659# modules.
1660lib/libpam__L: .PHONY .MAKE
1661	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1662		cd ${.CURDIR}/lib/libpam && \
1663		${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ obj && \
1664		${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ depend && \
1665		${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ \
1666		    -D_NO_LIBPAM_SO_YET all && \
1667		${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ \
1668		    -D_NO_LIBPAM_SO_YET install
1669
1670_prereq_libs: ${_prereq_libs:S/$/__PL/}
1671_startup_libs: ${_startup_libs:S/$/__L/}
1672_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1673_generic_libs: ${_generic_libs:S/$/__L/}
1674
1675.for __target in all clean cleandepend cleandir depend includes obj
1676.for entry in ${SUBDIR}
1677${entry}.${__target}__D: .PHONY .MAKE
1678	${_+_}@set -e; if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1679		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1680		edir=${entry}.${MACHINE_ARCH}; \
1681		cd ${.CURDIR}/$${edir}; \
1682	else \
1683		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1684		edir=${entry}; \
1685		cd ${.CURDIR}/$${edir}; \
1686	fi; \
1687	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1688.endfor
1689par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1690.endfor
1691
1692.include <bsd.subdir.mk>
1693
1694.if make(check-old) || make(check-old-dirs) || \
1695    make(check-old-files) || make(check-old-libs) || \
1696    make(delete-old) || make(delete-old-dirs) || \
1697    make(delete-old-files) || make(delete-old-libs)
1698
1699#
1700# check for / delete old files section
1701#
1702
1703.include "ObsoleteFiles.inc"
1704
1705OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1706else you can not start such an application. Consult UPDATING for more \
1707information regarding how to cope with the removal/revision bump of a \
1708specific library."
1709
1710.if !defined(BATCH_DELETE_OLD_FILES)
1711RM_I=-i
1712.else
1713RM_I=-v
1714.endif
1715
1716delete-old-files:
1717	@echo ">>> Removing old files (only deletes safe to delete libs)"
1718# Ask for every old file if the user really wants to remove it.
1719# It's annoying, but better safe than sorry.
1720# NB: We cannot pass the list of OLD_FILES as a parameter because the
1721# argument list will get too long. Using .for/.endfor make "loops" will make
1722# the Makefile parser segfault.
1723	@exec 3<&0; \
1724	cd ${.CURDIR}; \
1725	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1726	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1727	while read file; do \
1728		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1729			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1730			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1731		fi; \
1732	done
1733# Remove catpages without corresponding manpages.
1734	@exec 3<&0; \
1735	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1736	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1737	while read catpage; do \
1738		read manpage; \
1739		if [ ! -e "$${manpage}" ]; then \
1740			rm ${RM_I} $${catpage} <&3; \
1741	        fi; \
1742	done
1743	@echo ">>> Old files removed"
1744
1745check-old-files:
1746	@echo ">>> Checking for old files"
1747	@cd ${.CURDIR}; \
1748	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1749	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1750	while read file; do \
1751		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1752		 	echo "${DESTDIR}/$${file}"; \
1753		fi; \
1754	done
1755# Check for catpages without corresponding manpages.
1756	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1757	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1758	while read catpage; do \
1759		read manpage; \
1760		if [ ! -e "$${manpage}" ]; then \
1761			echo $${catpage}; \
1762	        fi; \
1763	done
1764
1765delete-old-libs:
1766	@echo ">>> Removing old libraries"
1767	@echo "${OLD_LIBS_MESSAGE}" | fmt
1768	@exec 3<&0; \
1769	cd ${.CURDIR}; \
1770	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1771	    -V OLD_LIBS | xargs -n1 | \
1772	while read file; do \
1773		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1774			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1775			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1776		fi; \
1777		for ext in debug symbols; do \
1778		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
1779		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1780			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
1781			      <&3; \
1782		  fi; \
1783		done; \
1784	done
1785	@echo ">>> Old libraries removed"
1786
1787check-old-libs:
1788	@echo ">>> Checking for old libraries"
1789	@cd ${.CURDIR}; \
1790	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1791	    -V OLD_LIBS | xargs -n1 | \
1792	while read file; do \
1793		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1794			echo "${DESTDIR}/$${file}"; \
1795		fi; \
1796		for ext in debug symbols; do \
1797		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1798			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
1799		  fi; \
1800		done; \
1801	done
1802
1803delete-old-dirs:
1804	@echo ">>> Removing old directories"
1805	@cd ${.CURDIR}; \
1806	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1807	    -V OLD_DIRS | xargs -n1 | sort -r | \
1808	while read dir; do \
1809		if [ -d "${DESTDIR}/$${dir}" ]; then \
1810			rmdir -v "${DESTDIR}/$${dir}" || true; \
1811		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1812			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1813		fi; \
1814	done
1815	@echo ">>> Old directories removed"
1816
1817check-old-dirs:
1818	@echo ">>> Checking for old directories"
1819	@cd ${.CURDIR}; \
1820	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1821	    -V OLD_DIRS | xargs -n1 | \
1822	while read dir; do \
1823		if [ -d "${DESTDIR}/$${dir}" ]; then \
1824			echo "${DESTDIR}/$${dir}"; \
1825		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1826			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1827		fi; \
1828	done
1829
1830delete-old: delete-old-files delete-old-dirs
1831	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1832
1833check-old: check-old-files check-old-libs check-old-dirs
1834	@echo "To remove old files and directories run '${MAKE} delete-old'."
1835	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1836
1837.endif
1838
1839#
1840# showconfig - show build configuration.
1841#
1842showconfig:
1843	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort
1844
1845.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1846DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1847
1848.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1849.if exists(${KERNCONFDIR}/${KERNCONF})
1850FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1851	'${KERNCONFDIR}/${KERNCONF}' ; echo
1852.endif
1853.endif
1854
1855.endif
1856
1857.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1858DTBOUTPUTPATH= ${.CURDIR}
1859.endif
1860
1861#
1862# Build 'standalone' Device Tree Blob
1863#
1864builddtb:
1865	@if [ "${FDT_DTS_FILE}" = "" ]; then \
1866		echo "ERROR: FDT_DTS_FILE must be specified!"; \
1867		exit 1; \
1868	fi;	\
1869	if [ ! -f ${.CURDIR}/sys/boot/fdt/dts/${MACHINE}/${FDT_DTS_FILE} ]; then \
1870		echo "ERROR: Specified DTS file (${FDT_DTS_FILE}) does not \
1871			exist!"; \
1872		exit 1;	\
1873	fi;	\
1874	if [ "${DTBOUTPUTPATH}" = "${.CURDIR}" ]; then	\
1875		echo "WARNING: DTB will be placed in the current working \
1876			directory"; \
1877	fi
1878	@PATH=${TMPPATH} \
1879	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
1880	    ${FDT_DTS_FILE} \
1881	    ${DTBOUTPUTPATH}/`basename ${FDT_DTS_FILE} .dts`
1882
1883###############
1884
1885.if defined(XDEV) && defined(XDEV_ARCH)
1886
1887.if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
1888XDEV_CPUTYPE?=${CPUTYPE}
1889.else
1890XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1891.endif
1892
1893NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
1894	-DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
1895	-DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_TESTS -DNO_WARNS \
1896	TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
1897	CPUTYPE=${XDEV_CPUTYPE}
1898
1899XDDIR=${XDEV_ARCH}-freebsd
1900XDTP?=/usr/${XDDIR}
1901.if ${XDTP:N/*}
1902.error XDTP variable should be an absolute path
1903.endif
1904
1905CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
1906	INSTALL="sh ${.CURDIR}/tools/install.sh"
1907CDENV= ${CDBENV} \
1908	_SHLIBDIRPREFIX=${XDDESTDIR} \
1909	TOOLS_PREFIX=${XDTP}
1910CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
1911	--sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
1912	-B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
1913CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
1914	CPP="${CPP} ${CD2CFLAGS}" \
1915	MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
1916
1917CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
1918CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1919CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1920XDDESTDIR=${DESTDIR}/${XDTP}
1921.if !defined(OSREL)
1922OSREL!= uname -r | sed -e 's/[-(].*//'
1923.endif
1924
1925.ORDER: xdev-build xdev-install
1926xdev: xdev-build xdev-install
1927
1928.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
1929xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
1930
1931_xb-worldtmp:
1932	mkdir -p ${CDTMP}/usr
1933	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1934	    -p ${CDTMP}/usr >/dev/null
1935
1936_xb-bootstrap-tools:
1937.for _tool in \
1938    ${_clang_tblgen}
1939	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1940	cd ${.CURDIR}/${_tool} && \
1941	${CDMAKE} DIRPRFX=${_tool}/ obj && \
1942	${CDMAKE} DIRPRFX=${_tool}/ depend && \
1943	${CDMAKE} DIRPRFX=${_tool}/ all && \
1944	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
1945.endfor
1946
1947_xb-build-tools:
1948	${_+_}@cd ${.CURDIR}; \
1949	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1950
1951_xb-cross-tools:
1952.for _tool in \
1953    ${_binutils} \
1954    usr.bin/ar \
1955    ${_clang_libs} \
1956    ${_clang} \
1957    ${_cc}
1958	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1959	cd ${.CURDIR}/${_tool} && \
1960	${CDMAKE} DIRPRFX=${_tool}/ obj && \
1961	${CDMAKE} DIRPRFX=${_tool}/ depend && \
1962	${CDMAKE} DIRPRFX=${_tool}/ all
1963.endfor
1964
1965_xi-mtree:
1966	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1967	mkdir -p ${XDDESTDIR}
1968	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1969	    -p ${XDDESTDIR} >/dev/null
1970	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1971	    -p ${XDDESTDIR}/usr >/dev/null
1972	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1973	    -p ${XDDESTDIR}/usr/include >/dev/null
1974.if ${MK_TESTS} != "no"
1975	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
1976	    -p ${XDDESTDIR}/usr >/dev/null
1977.endif
1978
1979.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1980xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1981
1982_xi-cross-tools:
1983	@echo "_xi-cross-tools"
1984.for _tool in \
1985    ${_binutils} \
1986    usr.bin/ar \
1987    ${_clang_libs} \
1988    ${_clang} \
1989    ${_cc}
1990	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
1991	cd ${.CURDIR}/${_tool}; \
1992	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
1993.endfor
1994
1995_xi-includes:
1996	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
1997		DESTDIR=${XDDESTDIR}
1998
1999_xi-libraries:
2000	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2001		DESTDIR=${XDDESTDIR}
2002
2003_xi-links:
2004	${_+_}cd ${XDDESTDIR}/usr/bin; \
2005       mkdir -p ../../../../usr/bin; \
2006		for i in *; do \
2007			ln -sf ../../${XDTP}/usr/bin/$$i \
2008			    ../../../../usr/bin/${XDDIR}-$$i; \
2009			ln -sf ../../${XDTP}/usr/bin/$$i \
2010			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2011		done
2012.else
2013xdev xdev-build xdev-install:
2014	@echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
2015.endif
2016