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