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