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