Makefile.inc1 revision 228158
1#
2# $FreeBSD: head/Makefile.inc1 228158 2011-11-30 18:11:49Z fjoe $
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#	-DNO_SHARE do not go into share subdir
8#	-DKERNFAST define NO_KERNEL{CONFIG,CLEAN,DEPEND,OBJ}
9#	-DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
10#	-DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
11#	-DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
12#	-DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
13#	-DNO_PORTSUPDATE do not update ports in ${MAKE} update
14#	-DNO_DOCUPDATE do not update doc in ${MAKE} update
15#	-DNO_WWWUPDATE do not update www in ${MAKE} update
16#	-DNO_CTF do not run the DTrace CTF conversion tools on built objects
17#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
18#	TARGET="machine" to crossbuild world for a different machine type
19#	TARGET_ARCH= may be required when a TARGET supports multiple endians
20
21#
22# The intended user-driven targets are:
23# buildworld  - rebuild *everything*, including glue to help do upgrades
24# installworld- install everything built by "buildworld"
25# doxygen     - build API documentation of the kernel
26# update      - convenient way to update your source tree (eg: cvsup/cvs)
27#
28# Standard targets (not defined here) are documented in the makefiles in
29# /usr/share/mk.  These include:
30#		obj depend all install clean cleandepend cleanobj
31
32# You are supposed to define both of these when calling Makefile.inc1
33# directly.  However, some old scripts don't.  Cope for the moment, but
34# issue a new warning for a transition period.
35.if defined(TARGET) && !defined(TARGET_ARCH)
36.warning "You must pass both TARGET and TARGET_ARCH to Makefile.inc1.  Setting TARGET_ARCH=${TARGET}."
37TARGET_ARCH=${TARGET}
38.endif
39.if !defined(TARGET) || !defined(TARGET_ARCH)
40.error "Both TARGET and TARGET_ARCH must be defined."
41.endif
42
43.include <bsd.own.mk>
44.include <bsd.arch.inc.mk>
45
46# We must do share/info early so that installation of info `dir'
47# entries works correctly.  Do it first since it is less likely to
48# grow dependencies on include and lib than vice versa.
49#
50# We must do lib/ and libexec/ before bin/, because if installworld
51# installs a new /bin/sh, the 'make' command will *immediately*
52# use that new version.  And the new (dynamically-linked) /bin/sh
53# will expect to find appropriate libraries in /lib and /libexec.
54#
55SUBDIR=	share/info lib libexec
56SUBDIR+=bin
57.if ${MK_GAMES} != "no"
58SUBDIR+=games
59.endif
60.if ${MK_CDDL} != "no"
61SUBDIR+=cddl
62.endif
63SUBDIR+=gnu include
64.if ${MK_KERBEROS} != "no"
65SUBDIR+=kerberos5
66.endif
67.if ${MK_RESCUE} != "no"
68SUBDIR+=rescue
69.endif
70SUBDIR+=sbin
71.if ${MK_CRYPT} != "no"
72SUBDIR+=secure
73.endif
74.if !defined(NO_SHARE)
75SUBDIR+=share
76.endif
77SUBDIR+=sys usr.bin usr.sbin
78.if ${MK_OFED} != "no"
79SUBDIR+=contrib/ofed
80.endif
81#
82# We must do etc/ last for install/distribute to work.
83#
84SUBDIR+=etc
85
86# These are last, since it is nice to at least get the base system
87# rebuilt before you do them.
88.for _DIR in ${LOCAL_DIRS}
89.if exists(${.CURDIR}/${_DIR}/Makefile)
90SUBDIR+= ${_DIR}
91.endif
92.endfor
93
94.if defined(SUBDIR_OVERRIDE)
95SUBDIR=		${SUBDIR_OVERRIDE}
96.endif
97
98.if defined(NOCLEAN)
99NO_CLEAN=	${NOCLEAN}
100.endif
101.if defined(NO_CLEANDIR)
102CLEANDIR=	clean cleandepend
103.else
104CLEANDIR=	cleandir
105.endif
106
107CVS?=		cvs
108CVSFLAGS?=	-A -P -d -I!
109SVN?=		svn
110SVNFLAGS?=	-r HEAD
111SUP?=		/usr/bin/csup
112SUPFLAGS?=	-g -L 2
113.if defined(SUPHOST)
114SUPFLAGS+=	-h ${SUPHOST}
115.endif
116
117MAKEOBJDIRPREFIX?=	/usr/obj
118.if !defined(OSRELDATE)
119.if exists(/usr/include/osreldate.h)
120OSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
121		/usr/include/osreldate.h
122.else
123OSRELDATE=	0
124.endif
125.endif
126
127.if !defined(VERSION)
128VERSION!=	uname -srp
129VERSION+=	${OSRELDATE}
130.endif
131
132KNOWN_ARCHES?=	amd64 arm armeb/arm i386 i386/pc98 ia64 mipsel/mips mipseb/mips mips64el/mips mips64eb/mips mipsn32el/mips mipsn32eb/mips powerpc powerpc64/powerpc sparc64
133.if ${TARGET} == ${TARGET_ARCH}
134_t=		${TARGET}
135.else
136_t=		${TARGET_ARCH}/${TARGET}
137.endif
138.for _t in ${_t}
139.if empty(KNOWN_ARCHES:M${_t})
140.error Unknown target ${TARGET_ARCH}:${TARGET}.
141.endif
142.endfor
143
144.if ${TARGET} == ${MACHINE}
145TARGET_CPUTYPE?=${CPUTYPE}
146.else
147TARGET_CPUTYPE?=
148.endif
149
150.if !empty(TARGET_CPUTYPE)
151_TARGET_CPUTYPE=${TARGET_CPUTYPE}
152.else
153_TARGET_CPUTYPE=dummy
154.endif
155_CPUTYPE!=	MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
156		-f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
157.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
158.error CPUTYPE global should be set with ?=.
159.endif
160.if make(buildworld)
161BUILD_ARCH!=	uname -p
162.if ${MACHINE_ARCH} != ${BUILD_ARCH}
163.error To cross-build, set TARGET_ARCH.
164.endif
165.endif
166.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
167OBJTREE=	${MAKEOBJDIRPREFIX}
168.else
169OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
170.endif
171WORLDTMP=	${OBJTREE}${.CURDIR}/tmp
172# /usr/games added for fortune which depend on strfile
173BPATH=		${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games
174XPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
175STRICTTMPPATH=	${BPATH}:${XPATH}
176TMPPATH=	${STRICTTMPPATH}:${PATH}
177
178#
179# Avoid running mktemp(1) unless actually needed.
180# It may not be functional, e.g., due to new ABI
181# when in the middle of installing over this system.
182#
183.if make(distributeworld) || make(installworld)
184INSTALLTMP!=	/usr/bin/mktemp -d -u -t install
185.endif
186
187#
188# Building a world goes through the following stages
189#
190# 1. legacy stage [BMAKE]
191#	This stage is responsible for creating compatibility
192#	shims that are needed by the bootstrap-tools,
193#	build-tools and cross-tools stages.
194# 1. bootstrap-tools stage [BMAKE]
195#	This stage is responsible for creating programs that
196#	are needed for backward compatibility reasons. They
197#	are not built as cross-tools.
198# 2. build-tools stage [TMAKE]
199#	This stage is responsible for creating the object
200#	tree and building any tools that are needed during
201#	the build process.
202# 3. cross-tools stage [XMAKE]
203#	This stage is responsible for creating any tools that
204#	are needed for cross-builds. A cross-compiler is one
205#	of them.
206# 4. world stage [WMAKE]
207#	This stage actually builds the world.
208# 5. install stage (optional) [IMAKE]
209#	This stage installs a previously built world.
210#
211
212BOOTSTRAPPING?=	0
213
214# Common environment for world related stages
215CROSSENV=	MAKEOBJDIRPREFIX=${OBJTREE} \
216		MACHINE_ARCH=${TARGET_ARCH} \
217		MACHINE=${TARGET} \
218		CPUTYPE=${TARGET_CPUTYPE}
219.if ${OSRELDATE} < 700044
220CROSSENV+=	AR=gnu-ar RANLIB=gnu-ranlib
221.endif
222.if ${MK_GROFF} != "no"
223CROSSENV+=	GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
224		GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
225		GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
226.endif
227
228# bootstrap-tools stage
229BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
230		PATH=${BPATH}:${PATH} \
231		WORLDTMP=${WORLDTMP} \
232		VERSION="${VERSION}" \
233		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
234BMAKE=		MAKEOBJDIRPREFIX=${WORLDTMP} \
235		${BMAKEENV} ${MAKE} -f Makefile.inc1 \
236		DESTDIR= \
237		BOOTSTRAPPING=${OSRELDATE} \
238		SSP_CFLAGS= \
239		-DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
240		-DNO_PIC -DNO_PROFILE -DNO_SHARED \
241		-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
242
243# build-tools stage
244TMAKE=		MAKEOBJDIRPREFIX=${OBJTREE} \
245		${BMAKEENV} ${MAKE} -f Makefile.inc1 \
246		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
247		DESTDIR= \
248		BOOTSTRAPPING=${OSRELDATE} \
249		SSP_CFLAGS= \
250		-DNO_LINT \
251		-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
252
253# cross-tools stage
254XMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
255		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
256		-DWITHOUT_GDB
257
258# world stage
259WMAKEENV=	${CROSSENV} \
260		_SHLIBDIRPREFIX=${WORLDTMP} \
261		VERSION="${VERSION}" \
262		INSTALL="sh ${.CURDIR}/tools/install.sh" \
263		PATH=${TMPPATH}
264.if ${MK_CDDL} == "no"
265WMAKEENV+=	NO_CTF=1
266.endif
267WMAKE=		${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP}
268
269.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
270# 32 bit world
271LIB32TMP=	${OBJTREE}${.CURDIR}/lib32
272
273.if ${TARGET_ARCH} == "amd64"
274.if empty(TARGET_CPUTYPE)
275LIB32CPUFLAGS=	-march=i686 -mmmx -msse -msse2
276.else
277LIB32CPUFLAGS=	-march=${TARGET_CPUTYPE}
278.endif
279LIB32CPUFLAGS+=	-mfancy-math-387
280LIB32WMAKEENV=	MACHINE=i386 MACHINE_ARCH=i386 \
281		MACHINE_CPU="i686 mmx sse sse2" \
282		LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \
283		AS="${AS} --32"
284
285.elif ${TARGET_ARCH} == "powerpc64"
286.if empty(TARGET_CPUTYPE)
287LIB32CPUFLAGS=	-mcpu=powerpc
288.else
289LIB32CPUFLAGS=	-mcpu=${TARGET_CPUTYPE}
290.endif
291LIB32WMAKEENV=	MACHINE=powerpc MACHINE_ARCH=powerpc \
292		LD="${LD} -m elf32ppc_fbsd"
293.endif
294
295
296LIB32FLAGS=	-m32 ${LIB32CPUFLAGS} -DCOMPAT_32BIT \
297		-isystem ${LIB32TMP}/usr/include/ \
298		-L${LIB32TMP}/usr/lib32 \
299		-B${LIB32TMP}/usr/lib32
300
301# Yes, the flags are redundant.
302LIB32WMAKEENV+=	MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \
303		_SHLIBDIRPREFIX=${LIB32TMP} \
304		VERSION="${VERSION}" \
305		INSTALL="sh ${.CURDIR}/tools/install.sh" \
306		PATH=${TMPPATH} \
307		CC="${CC} ${LIB32FLAGS}" \
308		CXX="${CXX} ${LIB32FLAGS}" \
309		LIBDIR=/usr/lib32 \
310		SHLIBDIR=/usr/lib32
311
312LIB32WMAKE=	${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \
313		-DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \
314		-DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \
315		DESTDIR=${LIB32TMP}
316LIB32IMAKE=	${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS
317.endif
318
319# install stage
320IMAKEENV=	${CROSSENV}
321IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1
322.if empty(.MAKEFLAGS:M-n)
323IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
324		LD_LIBRARY_PATH=${INSTALLTMP} \
325		PATH_LOCALE=${INSTALLTMP}/locale
326IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
327.else
328IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
329.endif
330
331# kernel stage
332KMAKEENV=	${WMAKEENV}
333KMAKE=		${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME}
334
335#
336# buildworld
337#
338# Attempt to rebuild the entire system, with reasonable chance of
339# success, regardless of how old your existing system is.
340#
341_worldtmp:
342.if ${.CURDIR:C/[^,]//g} != ""
343#	The m4 build of sendmail files doesn't like it if ',' is used
344#	anywhere in the path of it's files.
345	@echo
346	@echo "*** Error: path to source tree contains a comma ','"
347	@echo
348	false
349.endif
350	@echo
351	@echo "--------------------------------------------------------------"
352	@echo ">>> Rebuilding the temporary build tree"
353	@echo "--------------------------------------------------------------"
354.if !defined(NO_CLEAN)
355	rm -rf ${WORLDTMP}
356.if defined(LIB32TMP)
357	rm -rf ${LIB32TMP}
358.endif
359.else
360	rm -rf ${WORLDTMP}/legacy/usr/include
361#	XXX - These three can depend on any header file.
362	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
363	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c
364	rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
365.endif
366.for _dir in \
367    lib usr legacy/usr
368	mkdir -p ${WORLDTMP}/${_dir}
369.endfor
370	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
371	    -p ${WORLDTMP}/legacy/usr >/dev/null
372.if ${MK_GROFF} != "no"
373	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
374	    -p ${WORLDTMP}/legacy/usr >/dev/null
375.endif
376	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
377	    -p ${WORLDTMP}/usr >/dev/null
378	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
379	    -p ${WORLDTMP}/usr/include >/dev/null
380	ln -sf ${.CURDIR}/sys ${WORLDTMP}
381.if ${MK_BIND_LIBS} != "no"
382	mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \
383	    -p ${WORLDTMP}/usr/include >/dev/null
384.endif
385_legacy:
386	@echo
387	@echo "--------------------------------------------------------------"
388	@echo ">>> stage 1.1: legacy release compatibility shims"
389	@echo "--------------------------------------------------------------"
390	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
391_bootstrap-tools:
392	@echo
393	@echo "--------------------------------------------------------------"
394	@echo ">>> stage 1.2: bootstrap tools"
395	@echo "--------------------------------------------------------------"
396	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
397_cleanobj:
398.if !defined(NO_CLEAN)
399	@echo
400	@echo "--------------------------------------------------------------"
401	@echo ">>> stage 2.1: cleaning up the object tree"
402	@echo "--------------------------------------------------------------"
403	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
404.if defined(LIB32TMP)
405	${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/}
406.endif
407.endif
408_obj:
409	@echo
410	@echo "--------------------------------------------------------------"
411	@echo ">>> stage 2.2: rebuilding the object tree"
412	@echo "--------------------------------------------------------------"
413	${_+_}cd ${.CURDIR}; ${WMAKE} par-obj
414_build-tools:
415	@echo
416	@echo "--------------------------------------------------------------"
417	@echo ">>> stage 2.3: build tools"
418	@echo "--------------------------------------------------------------"
419	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
420_cross-tools:
421	@echo
422	@echo "--------------------------------------------------------------"
423	@echo ">>> stage 3: cross tools"
424	@echo "--------------------------------------------------------------"
425	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
426_includes:
427	@echo
428	@echo "--------------------------------------------------------------"
429	@echo ">>> stage 4.1: building includes"
430	@echo "--------------------------------------------------------------"
431	${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
432_libraries:
433	@echo
434	@echo "--------------------------------------------------------------"
435	@echo ">>> stage 4.2: building libraries"
436	@echo "--------------------------------------------------------------"
437	${_+_}cd ${.CURDIR}; \
438	    ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
439	    -DWITHOUT_MAN -DNO_PROFILE libraries
440_depend:
441	@echo
442	@echo "--------------------------------------------------------------"
443	@echo ">>> stage 4.3: make dependencies"
444	@echo "--------------------------------------------------------------"
445	${_+_}cd ${.CURDIR}; ${WMAKE} par-depend
446everything:
447	@echo
448	@echo "--------------------------------------------------------------"
449	@echo ">>> stage 4.4: building everything"
450	@echo "--------------------------------------------------------------"
451	${_+_}cd ${.CURDIR}; ${WMAKE} par-all
452.if defined(LIB32TMP)
453build32:
454	@echo
455	@echo "--------------------------------------------------------------"
456	@echo ">>> stage 5.1: building 32 bit shim libraries"
457	@echo "--------------------------------------------------------------"
458	mkdir -p ${LIB32TMP}/usr/include
459	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
460	    -p ${LIB32TMP}/usr >/dev/null
461	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
462	    -p ${LIB32TMP}/usr/include >/dev/null
463	mkdir -p ${WORLDTMP}
464	ln -sf ${.CURDIR}/sys ${WORLDTMP}
465.if ${MK_KERBEROS} != "no"
466.for _t in obj depend all
467	cd ${.CURDIR}/kerberos5/tools; \
468	    MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
469	    DIRPRFX=kerberos5/tools/ ${_t}
470.endfor
471.endif
472.for _t in obj includes
473	cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t}
474	cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t}
475.if ${MK_CDDL} != "no"
476	cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t}
477.endif
478	cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t}
479.if ${MK_CRYPT} != "no"
480	cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t}
481.endif
482.if ${MK_KERBEROS} != "no"
483	cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t}
484.endif
485.endfor
486.for _dir in usr.bin/lex/lib
487	cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj
488.endfor
489.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic
490	cd ${.CURDIR}/${_dir}; \
491	    MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
492	    DIRPRFX=${_dir}/ build-tools
493.endfor
494	cd ${.CURDIR}; \
495	    ${LIB32WMAKE} -f Makefile.inc1 libraries
496.for _t in obj depend all
497	cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \
498	    DIRPRFX=libexec/rtld-elf/ ${_t}
499	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \
500	    DIRPRFX=usr.bin/ldd ${_t}
501.endfor
502
503distribute32 install32:
504	cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
505.if ${MK_CDDL} != "no"
506	cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
507.endif
508	cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
509.if ${MK_CRYPT} != "no"
510	cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
511.endif
512.if ${MK_KERBEROS} != "no"
513	cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
514.endif
515	cd ${.CURDIR}/libexec/rtld-elf; \
516	    PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
517	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}
518.endif
519
520WMAKE_TGTS=
521.if !defined(SUBDIR_OVERRIDE)
522WMAKE_TGTS+=	_worldtmp _legacy _bootstrap-tools
523.endif
524WMAKE_TGTS+=	_cleanobj _obj _build-tools
525.if !defined(SUBDIR_OVERRIDE)
526WMAKE_TGTS+=	_cross-tools
527.endif
528WMAKE_TGTS+=	_includes _libraries _depend everything
529.if defined(LIB32TMP) && ${MK_LIB32} != "no"
530WMAKE_TGTS+=	build32
531.endif
532
533buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
534.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
535
536buildworld_prologue:
537	@echo "--------------------------------------------------------------"
538	@echo ">>> World build started on `LC_ALL=C date`"
539	@echo "--------------------------------------------------------------"
540
541buildworld_epilogue:
542	@echo
543	@echo "--------------------------------------------------------------"
544	@echo ">>> World build completed on `LC_ALL=C date`"
545	@echo "--------------------------------------------------------------"
546
547#
548# We need to have this as a target because the indirection between Makefile
549# and Makefile.inc1 causes the correct PATH to be used, rather than a
550# modification of the current environment's PATH.  In addition, we need
551# to quote multiword values.
552#
553buildenvvars:
554	@echo ${WMAKEENV:Q}
555
556buildenv:
557	@echo Entering world for ${TARGET_ARCH}:${TARGET}
558	@cd ${.CURDIR} && env ${WMAKEENV} sh || true
559
560TOOLCHAIN_TGTS=	${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
561toolchain: ${TOOLCHAIN_TGTS}
562kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
563
564#
565# installcheck
566#
567# Checks to be sure system is ready for installworld/installkernel.
568#
569installcheck:
570
571#
572# Require DESTDIR to be set if installing for a different architecture.
573#
574.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE}
575.if !make(distributeworld)
576installcheck: installcheck_DESTDIR
577installcheck_DESTDIR:
578.if !defined(DESTDIR) || empty(DESTDIR)
579	@echo "ERROR: Please set DESTDIR!"; \
580	false
581.endif
582.endif
583.endif
584
585#
586# Check for missing UIDs/GIDs.
587#
588CHECK_UIDS=
589CHECK_GIDS=	audit
590.if ${MK_SENDMAIL} != "no"
591CHECK_UIDS+=	smmsp
592CHECK_GIDS+=	smmsp
593.endif
594.if ${MK_PF} != "no"
595CHECK_UIDS+=	proxy
596CHECK_GIDS+=	proxy authpf
597.endif
598installcheck: installcheck_UGID
599installcheck_UGID:
600.for uid in ${CHECK_UIDS}
601	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
602		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
603		false; \
604	fi
605.endfor
606.for gid in ${CHECK_GIDS}
607	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
608		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
609		false; \
610	fi
611.endfor
612
613#
614# Required install tools to be saved in a scratch dir for safety.
615#
616.if ${MK_INFO} != "no"
617_install-info=	install-info
618.endif
619.if ${MK_ZONEINFO} != "no"
620_zoneinfo=	zic tzsetup
621.endif
622
623ITOOLS=	[ awk cap_mkdb cat chflags chmod chown \
624	date echo egrep find grep ${_install-info} \
625	ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
626	test true uname wc ${_zoneinfo}
627
628#
629# distributeworld
630#
631# Distributes everything compiled by a `buildworld'.
632#
633# installworld
634#
635# Installs everything compiled by a 'buildworld'.
636#
637
638# Non-base distributions produced by the base system
639EXTRA_DISTRIBUTIONS=	doc games
640.if defined(LIB32TMP) && ${MK_LIB32} != "no"
641EXTRA_DISTRIBUTIONS+=	lib32
642.endif
643
644distributeworld installworld: installcheck
645	mkdir -p ${INSTALLTMP}
646	progs=$$(for prog in ${ITOOLS}; do \
647		if progpath=`which $$prog`; then \
648			echo $$progpath; \
649		else \
650			echo "Required tool $$prog not found in PATH." >&2; \
651			exit 1; \
652		fi; \
653	    done); \
654	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
655	    while read line; do \
656		set -- $$line; \
657		if [ "$$2 $$3" != "not found" ]; then \
658			echo $$2; \
659		else \
660			echo "Required library $$1 not found." >&2; \
661			exit 1; \
662		fi; \
663	    done); \
664	cp $$libs $$progs ${INSTALLTMP}
665	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
666.if make(distributeworld)
667.for dist in ${EXTRA_DISTRIBUTIONS}
668	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
669	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
670	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
671	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
672	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
673	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
674	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
675.endfor
676	-mkdir ${DESTDIR}/${DISTDIR}/base
677	${_+_}cd ${.CURDIR}; ${IMAKE} distrib-dirs \
678	    DESTDIR=${DESTDIR}/${DISTDIR}/base
679.endif
680	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
681	    ${IMAKEENV} rm -rf ${INSTALLTMP}
682.if make(distributeworld)
683.for dist in ${EXTRA_DISTRIBUTIONS}
684	find ${DESTDIR}/${DISTDIR}/${dist} -empty -delete
685.endfor
686.endif
687
688packageworld:
689.for dist in base ${EXTRA_DISTRIBUTIONS}
690	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
691	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz .
692.endfor
693
694#
695# reinstall
696#
697# If you have a build server, you can NFS mount the source and obj directories
698# and do a 'make reinstall' on the *client* to install new binaries from the
699# most recent server build.
700#
701reinstall:
702	@echo "--------------------------------------------------------------"
703	@echo ">>> Making hierarchy"
704	@echo "--------------------------------------------------------------"
705	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
706	@echo
707	@echo "--------------------------------------------------------------"
708	@echo ">>> Installing everything"
709	@echo "--------------------------------------------------------------"
710	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
711.if defined(LIB32TMP) && ${MK_LIB32} != "no"
712	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
713.endif
714
715redistribute:
716	@echo "--------------------------------------------------------------"
717	@echo ">>> Distributing everything"
718	@echo "--------------------------------------------------------------"
719	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
720.if defined(LIB32TMP) && ${MK_LIB32} != "no"
721	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
722	    DISTRIBUTION=lib32
723.endif
724
725distrib-dirs distribution:
726	cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} ${.TARGET}
727
728#
729# buildkernel and installkernel
730#
731# Which kernels to build and/or install is specified by setting
732# KERNCONF. If not defined a GENERIC kernel is built/installed.
733# Only the existing (depending TARGET) config files are used
734# for building kernels and only the first of these is designated
735# as the one being installed.
736#
737# Note that we have to use TARGET instead of TARGET_ARCH when
738# we're in kernel-land. Since only TARGET_ARCH is (expected) to
739# be set to cross-build, we have to make sure TARGET is set
740# properly.
741
742.if defined(KERNFAST)
743NO_KERNELCLEAN=	t
744NO_KERNELCONFIG=	t
745NO_KERNELDEPEND=	t
746NO_KERNELOBJ=		t
747# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
748.if !defined(KERNCONF) && ${KERNFAST} != "1"
749KERNCONF=${KERNFAST}
750.endif
751.endif
752.if !defined(KERNCONF) && defined(KERNEL)
753KERNCONF=	${KERNEL}
754KERNWARN=
755.else
756.if ${TARGET_ARCH} == "powerpc64"
757KERNCONF?=	GENERIC64
758.else
759KERNCONF?=	GENERIC
760.endif
761.endif
762INSTKERNNAME?=	kernel
763
764KERNSRCDIR?=	${.CURDIR}/sys
765KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
766KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
767KERNCONFDIR?=	${KRNLCONFDIR}
768
769BUILDKERNELS=
770INSTALLKERNEL=
771.for _kernel in ${KERNCONF}
772.if exists(${KERNCONFDIR}/${_kernel})
773BUILDKERNELS+=	${_kernel}
774.if empty(INSTALLKERNEL)
775INSTALLKERNEL= ${_kernel}
776.endif
777.endif
778.endfor
779
780#
781# buildkernel
782#
783# Builds all kernels defined by BUILDKERNELS.
784#
785buildkernel:
786.if empty(BUILDKERNELS)
787	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
788	false
789.endif
790.if defined(KERNWARN)
791	@echo "--------------------------------------------------------------"
792	@echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
793	@echo "--------------------------------------------------------------"
794	@sleep 3
795.endif
796	@echo
797.for _kernel in ${BUILDKERNELS}
798	@echo "--------------------------------------------------------------"
799	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
800	@echo "--------------------------------------------------------------"
801	@echo "===> ${_kernel}"
802	mkdir -p ${KRNLOBJDIR}
803.if !defined(NO_KERNELCONFIG)
804	@echo
805	@echo "--------------------------------------------------------------"
806	@echo ">>> stage 1: configuring the kernel"
807	@echo "--------------------------------------------------------------"
808	cd ${KRNLCONFDIR}; \
809		PATH=${TMPPATH} \
810		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
811			${KERNCONFDIR}/${_kernel}
812.endif
813.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
814	@echo
815	@echo "--------------------------------------------------------------"
816	@echo ">>> stage 2.1: cleaning up the object tree"
817	@echo "--------------------------------------------------------------"
818	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
819.endif
820.if !defined(NO_KERNELOBJ)
821	@echo
822	@echo "--------------------------------------------------------------"
823	@echo ">>> stage 2.2: rebuilding the object tree"
824	@echo "--------------------------------------------------------------"
825	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
826.endif
827	@echo
828	@echo "--------------------------------------------------------------"
829	@echo ">>> stage 2.3: build tools"
830	@echo "--------------------------------------------------------------"
831	cd ${KRNLOBJDIR}/${_kernel}; \
832	    MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
833	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \
834	    -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
835# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
836.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
837.for target in obj depend all
838	cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
839	    MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
840	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target}
841.endfor
842.endif
843.if !defined(NO_KERNELDEPEND)
844	@echo
845	@echo "--------------------------------------------------------------"
846	@echo ">>> stage 3.1: making dependencies"
847	@echo "--------------------------------------------------------------"
848	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
849.endif
850	@echo
851	@echo "--------------------------------------------------------------"
852	@echo ">>> stage 3.2: building everything"
853	@echo "--------------------------------------------------------------"
854	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
855	@echo "--------------------------------------------------------------"
856	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
857	@echo "--------------------------------------------------------------"
858.endfor
859
860#
861# installkernel, etc.
862#
863# Install the kernel defined by INSTALLKERNEL
864#
865installkernel installkernel.debug \
866reinstallkernel reinstallkernel.debug: installcheck
867.if empty(INSTALLKERNEL)
868	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
869	false
870.endif
871	@echo "--------------------------------------------------------------"
872	@echo ">>> Installing kernel ${INSTALLKERNEL}"
873	@echo "--------------------------------------------------------------"
874	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
875	    ${CROSSENV} PATH=${TMPPATH} \
876	    ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
877
878distributekernel distributekernel.debug:
879.if empty(INSTALLKERNEL)
880	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
881	false
882.endif
883	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
884	    ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
885	    DESTDIR=${DESTDIR}/${DISTDIR}/kernel \
886	    ${.TARGET:S/distributekernel/install/}
887
888packagekernel:
889	${_+_}cd ${DESTDIR}/${DISTDIR}/kernel; \
890	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz .
891
892#
893# doxygen
894#
895# Build the API documentation with doxygen
896#
897doxygen:
898	@if [ ! -x `/usr/bin/which doxygen` ]; then \
899		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
900		exit 1; \
901	fi
902	cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
903
904#
905# update
906#
907# Update the source tree(s), by running cvsup/cvs/svn to update to the
908# latest copy.
909#
910update:
911.if defined(SUP_UPDATE)
912	@echo "--------------------------------------------------------------"
913	@echo ">>> Running ${SUP}"
914	@echo "--------------------------------------------------------------"
915.if defined(SUPFILE)
916	@${SUP} ${SUPFLAGS} ${SUPFILE}
917.endif
918.if defined(SUPFILE1)
919	@${SUP} ${SUPFLAGS} ${SUPFILE1}
920.endif
921.if defined(SUPFILE2)
922	@${SUP} ${SUPFLAGS} ${SUPFILE2}
923.endif
924.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
925	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
926.endif
927.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
928	@${SUP} ${SUPFLAGS} ${DOCSUPFILE}
929.endif
930.if defined(WWWSUPFILE) && !defined(NO_WWWUPDATE)
931	@${SUP} ${SUPFLAGS} ${WWWSUPFILE}
932.endif
933.endif
934.if defined(CVS_UPDATE)
935	@cd ${.CURDIR} ; \
936	if [ -d CVS ] ; then \
937		echo "--------------------------------------------------------------" ; \
938		echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} ; \
939		echo "--------------------------------------------------------------" ; \
940		echo ${CVS} -R -q update ${CVSFLAGS} ; \
941		${CVS} -R -q update ${CVSFLAGS} ; \
942	fi
943.endif
944.if defined(SVN_UPDATE)
945	@cd ${.CURDIR} ; \
946	if [ -d .svn ] ; then \
947		echo "--------------------------------------------------------------" ; \
948		echo ">>> Updating ${.CURDIR} using Subversion" ; \
949		echo "--------------------------------------------------------------" ; \
950		echo ${SVN} update ${SVNFLAGS} ; \
951		${SVN} update ${SVNFLAGS} ; \
952	fi
953.endif
954
955#
956# ------------------------------------------------------------------------
957#
958# From here onwards are utility targets used by the 'make world' and
959# related targets.  If your 'world' breaks, you may like to try to fix
960# the problem and manually run the following targets to attempt to
961# complete the build.  Beware, this is *not* guaranteed to work, you
962# need to have a pretty good grip on the current state of the system
963# to attempt to manually finish it.  If in doubt, 'make world' again.
964#
965
966#
967# legacy: Build compatibility shims for the next three targets
968#
969legacy:
970.if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0
971	@echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \
972	false
973.endif
974.for _tool in tools/build
975	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
976	    cd ${.CURDIR}/${_tool}; \
977	    ${MAKE} DIRPRFX=${_tool}/ obj; \
978	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
979	    ${MAKE} DIRPRFX=${_tool}/ depend; \
980	    ${MAKE} DIRPRFX=${_tool}/ all; \
981	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
982.endfor
983
984#
985# bootstrap-tools: Build tools needed for compatibility
986#
987.if ${MK_GAMES} != "no"
988_strfile=	games/fortune/strfile
989.endif
990
991.if ${MK_CXX} != "no"
992_gperf=		gnu/usr.bin/gperf
993.endif
994
995.if ${MK_GROFF} != "no"
996_groff=		gnu/usr.bin/groff
997.endif
998
999.if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022
1000_ar=		usr.bin/ar
1001.endif
1002
1003.if ${BOOTSTRAPPING} < 800013
1004_mklocale=	usr.bin/mklocale
1005.endif
1006
1007.if ${BOOTSTRAPPING} < 900002
1008_sed=		usr.bin/sed
1009.endif
1010
1011.if ${BOOTSTRAPPING} < 900006
1012_lex=		usr.bin/lex
1013_yacc=		usr.bin/yacc
1014.endif
1015
1016.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1017_awk=		usr.bin/awk
1018.endif
1019
1020.if ${MK_BSNMP} != "no" && \
1021    (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree))
1022_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1023.endif
1024
1025.if ${MK_RESCUE} != "no" && \
1026    ${BOOTSTRAPPING} < 700026
1027_crunchgen=	usr.sbin/crunch/crunchgen
1028.endif
1029
1030.if ${MK_CLANG} != "no"
1031_clang_tblgen= \
1032	lib/clang/libllvmsupport \
1033	lib/clang/libllvmtablegen \
1034	usr.bin/clang/tblgen \
1035	usr.bin/clang/clang-tblgen
1036.endif
1037
1038.if ${MK_CDDL} != "no" && \
1039    ${BOOTSTRAPPING} < 800038 && \
1040    !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)
1041_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
1042    lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1043.endif
1044
1045.if ${MK_FDT} != "no"
1046_dtc= gnu/usr.bin/dtc
1047.endif
1048
1049#	Please document (add comment) why something is in 'bootstrap-tools'.
1050#	Try to bound the building of the bootstrap-tool to just the
1051#	FreeBSD versions that need the tool built at this stage of the build.
1052bootstrap-tools:
1053.for _tool in \
1054    ${_clang_tblgen} \
1055    ${_dtrace_tools} \
1056    ${_strfile} \
1057    ${_gperf} \
1058    ${_groff} \
1059    ${_ar} \
1060    ${_dtc} \
1061    ${_awk} \
1062    usr.bin/lorder \
1063    usr.bin/makewhatis \
1064    ${_mklocale} \
1065    usr.bin/rpcgen \
1066    ${_sed} \
1067    ${_lex} \
1068    ${_yacc} \
1069    usr.bin/xinstall \
1070    ${_gensnmptree} \
1071    usr.sbin/config \
1072    ${_crunchgen}
1073	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1074		cd ${.CURDIR}/${_tool}; \
1075		${MAKE} DIRPRFX=${_tool}/ obj; \
1076		${MAKE} DIRPRFX=${_tool}/ depend; \
1077		${MAKE} DIRPRFX=${_tool}/ all; \
1078		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1079.endfor
1080
1081#
1082# build-tools: Build special purpose build tools
1083#
1084.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
1085_aicasm= sys/modules/aic7xxx/aicasm
1086.endif
1087
1088.if !defined(NO_SHARE)
1089_share=	share/syscons/scrnmaps
1090.endif
1091
1092.if ${MK_KERBEROS} != "no"
1093_kerberos5_tools= kerberos5/tools
1094.endif
1095
1096.if ${MK_RESCUE} != "no"
1097_rescue= rescue/rescue
1098.endif
1099
1100build-tools:
1101.for _tool in \
1102    bin/csh \
1103    bin/sh \
1104    ${_rescue} \
1105    lib/ncurses/ncurses \
1106    lib/ncurses/ncursesw \
1107    ${_share} \
1108    ${_aicasm} \
1109    usr.bin/awk \
1110    lib/libmagic \
1111    usr.bin/mkesdb_static \
1112    usr.bin/mkcsmapper_static
1113	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1114		cd ${.CURDIR}/${_tool}; \
1115		${MAKE} DIRPRFX=${_tool}/ obj; \
1116		${MAKE} DIRPRFX=${_tool}/ build-tools
1117.endfor
1118.for _tool in \
1119    gnu/usr.bin/cc/cc_tools \
1120    ${_kerberos5_tools}
1121	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1122		cd ${.CURDIR}/${_tool}; \
1123		${MAKE} DIRPRFX=${_tool}/ obj; \
1124		${MAKE} DIRPRFX=${_tool}/ depend; \
1125		${MAKE} DIRPRFX=${_tool}/ all
1126.endfor
1127
1128#
1129# cross-tools: Build cross-building tools
1130#
1131.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1132.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1133_btxld=		usr.sbin/btxld
1134.endif
1135.endif
1136.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1137.if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1138_crunchide=	usr.sbin/crunch/crunchide
1139.endif
1140.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1141_kgzip=		usr.sbin/kgzip
1142.endif
1143.endif
1144
1145.if ${MK_BINUTILS} != "no"
1146_binutils=	gnu/usr.bin/binutils
1147.endif
1148
1149.if ${MK_CLANG} != "no"
1150.if ${CC:T:Mclang} == "clang"
1151_clang=		usr.bin/clang
1152_clang_libs=	lib/clang
1153.endif
1154.endif
1155
1156.if ${MK_GCC} != "no"
1157_cc=		gnu/usr.bin/cc
1158.endif
1159
1160cross-tools:
1161.for _tool in \
1162    ${_clang_libs} \
1163    ${_clang} \
1164    ${_binutils} \
1165    ${_cc} \
1166    usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1167    ${_btxld} \
1168    ${_crunchide} \
1169    ${_kgzip}
1170	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1171		cd ${.CURDIR}/${_tool}; \
1172		${MAKE} DIRPRFX=${_tool}/ obj; \
1173		${MAKE} DIRPRFX=${_tool}/ depend; \
1174		${MAKE} DIRPRFX=${_tool}/ all; \
1175		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1176.endfor
1177
1178#
1179# hierarchy - ensure that all the needed directories are present
1180#
1181hierarchy:
1182	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
1183
1184#
1185# libraries - build all libraries, and install them under ${DESTDIR}.
1186#
1187# The list of libraries with dependents (${_prebuild_libs}) and their
1188# interdependencies (__L) are built automatically by the
1189# ${.CURDIR}/tools/make_libdeps.sh script.
1190#
1191libraries:
1192	cd ${.CURDIR}; \
1193	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
1194	    ${MAKE} -f Makefile.inc1 _startup_libs; \
1195	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1196	    ${MAKE} -f Makefile.inc1 _generic_libs;
1197
1198#
1199# static libgcc.a prerequisite for shared libc
1200#
1201_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1202
1203# These dependencies are not automatically generated:
1204#
1205# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1206# all shared libraries for ELF.
1207#
1208_startup_libs=	gnu/lib/csu
1209.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1210_startup_libs+=	lib/csu/${MACHINE_ARCH}-elf
1211.elif exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
1212_startup_libs+=	lib/csu/${MACHINE_ARCH}
1213.else
1214_startup_libs+=	lib/csu/${MACHINE_CPUARCH}
1215.endif
1216_startup_libs+=	gnu/lib/libgcc
1217_startup_libs+=	lib/libcompiler_rt
1218_startup_libs+=	lib/libc
1219.if ${MK_LIBCPLUSPLUS} != "no"
1220_startup_libs+=	lib/libcxxrt
1221.endif
1222
1223gnu/lib/libgcc__L: lib/libc__L
1224
1225_prebuild_libs=	${_kerberos5_lib_libasn1} ${_kerberos5_lib_libhdb} \
1226		${_kerberos5_lib_libheimntlm} \
1227		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1228		${_kerberos5_lib_libroken} \
1229		lib/libbz2 lib/libcom_err lib/libcrypt \
1230		lib/libexpat \
1231		${_lib_libgssapi} ${_lib_libipx} \
1232		lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1233		lib/ncurses/ncurses lib/ncurses/ncursesw \
1234		lib/libopie lib/libpam ${_lib_libthr} \
1235		lib/libradius lib/libsbuf lib/libtacplus \
1236		${_cddl_lib_libumem} \
1237		lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1238		${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1239		${_secure_lib_libssl}
1240
1241.if ${MK_LIBTHR} != "no"
1242_lib_libthr=	lib/libthr
1243.endif
1244
1245.if ${MK_OFED} != "no"
1246_ofed_lib=	contrib/ofed/usr.lib/
1247.endif
1248
1249_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1250
1251lib/libopie__L lib/libtacplus__L: lib/libmd__L
1252
1253.if ${MK_CDDL} != "no"
1254_cddl_lib_libumem= cddl/lib/libumem
1255_cddl_lib= cddl/lib
1256.endif
1257
1258.if ${MK_CRYPT} != "no"
1259.if ${MK_OPENSSL} != "no"
1260_secure_lib_libcrypto= secure/lib/libcrypto
1261_secure_lib_libssl= secure/lib/libssl
1262lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1263.if ${MK_OPENSSH} != "no"
1264_secure_lib_libssh= secure/lib/libssh
1265secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1266.if ${MK_KERBEROS_SUPPORT} != "no"
1267secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1268    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1269    lib/libmd__L kerberos5/lib/libroken__L
1270.endif
1271.endif
1272.endif
1273_secure_lib=	secure/lib
1274.endif
1275
1276.if ${MK_KERBEROS} != "no"
1277kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1278kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1279    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L
1280kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L
1281kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1282    secure/lib/libcrypto__L kerberos5/lib/libroken__L
1283kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1284    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1285    kerberos5/lib/libroken__L
1286kerberos5/lib/libroken__L: lib/libcrypt__L
1287.endif
1288
1289.if ${MK_GSSAPI} != "no"
1290_lib_libgssapi=	lib/libgssapi
1291.endif
1292
1293.if ${MK_IPX} != "no"
1294_lib_libipx=	lib/libipx
1295.endif
1296
1297.if ${MK_KERBEROS} != "no"
1298_kerberos5_lib=	kerberos5/lib
1299_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1300_kerberos5_lib_libhdb= kerberos5/lib/libhdb
1301_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1302_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1303_kerberos5_lib_libroken= kerberos5/lib/libroken
1304_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1305.endif
1306
1307.if ${MK_NIS} != "no"
1308_lib_libypclnt=	lib/libypclnt
1309.endif
1310
1311.if ${MK_OPENSSL} == "no"
1312lib/libradius__L: lib/libmd__L
1313.endif
1314
1315.for _lib in ${_prereq_libs}
1316${_lib}__PL: .PHONY
1317.if exists(${.CURDIR}/${_lib})
1318	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1319		cd ${.CURDIR}/${_lib}; \
1320		${MAKE} DIRPRFX=${_lib}/ obj; \
1321		${MAKE} DIRPRFX=${_lib}/ depend; \
1322		${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1323		${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1324.endif
1325.endfor
1326
1327.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1328${_lib}__L: .PHONY
1329.if exists(${.CURDIR}/${_lib})
1330	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1331		cd ${.CURDIR}/${_lib}; \
1332		${MAKE} DIRPRFX=${_lib}/ obj; \
1333		${MAKE} DIRPRFX=${_lib}/ depend; \
1334		${MAKE} DIRPRFX=${_lib}/ all; \
1335		${MAKE} DIRPRFX=${_lib}/ install
1336.endif
1337.endfor
1338
1339# libpam is special: we need to build static PAM modules before
1340# static PAM library, and dynamic PAM library before dynamic PAM
1341# modules.
1342lib/libpam__L: .PHONY
1343	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1344		cd ${.CURDIR}/lib/libpam; \
1345		${MAKE} DIRPRFX=lib/libpam/ obj; \
1346		${MAKE} DIRPRFX=lib/libpam/ depend; \
1347		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1348		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1349
1350_prereq_libs: ${_prereq_libs:S/$/__PL/}
1351_startup_libs: ${_startup_libs:S/$/__L/}
1352_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1353_generic_libs: ${_generic_libs:S/$/__L/}
1354
1355.for __target in all clean cleandepend cleandir depend includes obj
1356.for entry in ${SUBDIR}
1357${entry}.${__target}__D: .PHONY
1358	${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1359		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1360		edir=${entry}.${MACHINE_ARCH}; \
1361		cd ${.CURDIR}/$${edir}; \
1362	else \
1363		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1364		edir=${entry}; \
1365		cd ${.CURDIR}/$${edir}; \
1366	fi; \
1367	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1368.endfor
1369par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1370.endfor
1371
1372.include <bsd.subdir.mk>
1373
1374.if make(check-old) || make(check-old-dirs) || \
1375    make(check-old-files) || make(check-old-libs) || \
1376    make(delete-old) || make(delete-old-dirs) || \
1377    make(delete-old-files) || make(delete-old-libs)
1378
1379#
1380# check for / delete old files section
1381#
1382
1383.include "ObsoleteFiles.inc"
1384
1385OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1386else you can not start such an application. Consult UPDATING for more \
1387information regarding how to cope with the removal/revision bump of a \
1388specific library."
1389
1390.if !defined(BATCH_DELETE_OLD_FILES)
1391RM_I=-i
1392.else
1393RM_I=-v
1394.endif
1395
1396delete-old-files:
1397	@echo ">>> Removing old files (only deletes safe to delete libs)"
1398# Ask for every old file if the user really wants to remove it.
1399# It's annoying, but better safe than sorry.
1400# NB: We cannot pass the list of OLD_FILES as a parameter because the
1401# argument list will get too long. Using .for/.endfor make "loops" will make
1402# the Makefile parser segfault.
1403	@exec 3<&0; \
1404	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1405	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1406	while read file; do \
1407		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1408			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1409			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1410		fi; \
1411	done
1412# Remove catpages without corresponding manpages.
1413	@exec 3<&0; \
1414	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1415	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1416	while read catpage; do \
1417		read manpage; \
1418		if [ ! -e "$${manpage}" ]; then \
1419			rm ${RM_I} $${catpage} <&3; \
1420	        fi; \
1421	done
1422	@echo ">>> Old files removed"
1423
1424check-old-files:
1425	@echo ">>> Checking for old files"
1426	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1427	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1428	while read file; do \
1429		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1430		 	echo "${DESTDIR}/$${file}"; \
1431		fi; \
1432	done
1433# Check for catpages without corresponding manpages.
1434	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1435	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1436	while read catpage; do \
1437		read manpage; \
1438		if [ ! -e "$${manpage}" ]; then \
1439			echo $${catpage}; \
1440	        fi; \
1441	done
1442
1443delete-old-libs:
1444	@echo ">>> Removing old libraries"
1445	@echo "${OLD_LIBS_MESSAGE}" | fmt
1446	@exec 3<&0; \
1447	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1448	    -V OLD_LIBS | xargs -n1 | \
1449	while read file; do \
1450		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1451			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1452			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1453		fi; \
1454	done
1455	@echo ">>> Old libraries removed"
1456
1457check-old-libs:
1458	@echo ">>> Checking for old libraries"
1459	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1460	    -V OLD_LIBS | xargs -n1 | \
1461	while read file; do \
1462		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1463			echo "${DESTDIR}/$${file}"; \
1464		fi; \
1465	done
1466
1467delete-old-dirs:
1468	@echo ">>> Removing old directories"
1469	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1470	    -V OLD_DIRS | xargs -n1 | \
1471	while read dir; do \
1472		if [ -d "${DESTDIR}/$${dir}" ]; then \
1473			rmdir -v "${DESTDIR}/$${dir}" || true; \
1474		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1475			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1476		fi; \
1477	done
1478	@echo ">>> Old directories removed"
1479
1480check-old-dirs:
1481	@echo ">>> Checking for old directories"
1482	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1483	    -V OLD_DIRS | xargs -n1 | \
1484	while read dir; do \
1485		if [ -d "${DESTDIR}/$${dir}" ]; then \
1486			echo "${DESTDIR}/$${dir}"; \
1487		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1488			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1489		fi; \
1490	done
1491
1492delete-old: delete-old-files delete-old-dirs
1493	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1494
1495check-old: check-old-files check-old-libs check-old-dirs
1496	@echo "To remove old files and directories run '${MAKE} delete-old'."
1497	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1498
1499.endif
1500
1501#
1502# showconfig - show build configuration.
1503#
1504showconfig:
1505	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
1506
1507.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1508DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1509
1510.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1511.if exists(${KERNCONFDIR}/${KERNCONF})
1512FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1513	${KERNCONFDIR}/${KERNCONF}
1514.endif
1515.endif
1516
1517.endif
1518
1519.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1520DTBOUTPUTPATH= ${.CURDIR}
1521.endif
1522
1523#
1524# Build 'standalone' Device Tree Blob
1525#
1526builddtb:
1527	@if [ "${FDT_DTS_FILE}" = "" ]; then \
1528		echo "ERROR: FDT_DTS_FILE must be specified!"; \
1529		exit 1; \
1530	fi;	\
1531	if [ ! -f ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE} ]; then \
1532		echo "ERROR: Specified DTS file (${FDT_DTS_FILE}) does not \
1533			exist!"; \
1534		exit 1;	\
1535	fi;	\
1536	if [ "${DTBOUTPUTPATH}" = "${.CURDIR}" ]; then	\
1537		echo "WARNING: DTB will be placed in the current working \
1538			directory"; \
1539	fi
1540	@PATH=${TMPPATH} \
1541	dtc -O dtb -o \
1542	    ${DTBOUTPUTPATH}/`echo ${FDT_DTS_FILE} | cut -d. -f1`.dtb -b 0 \
1543	    -p 1024 ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE}
1544
1545###############
1546
1547.if defined(XDEV) && defined(XDEV_ARCH)
1548
1549.if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
1550XDEV_CPUTYPE?=${CPUTYPE}
1551.else
1552XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1553.endif
1554
1555NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
1556	-DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
1557	-DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \
1558	TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
1559	CPUTYPE=${XDEV_CPUTYPE}
1560
1561XDDIR=${XDEV_ARCH}-freebsd
1562XDTP=/usr/${XDDIR}
1563CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR}
1564CDENV= ${CDBENV} \
1565	_SHLIBDIRPREFIX=${XDTP} \
1566	TOOLS_PREFIX=${XDTP}
1567CD2ENV=${CDENV} \
1568	MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
1569
1570CDTMP=	${MAKEOBJDIRPREFIX}/${XDEV}/${.CURDIR}/tmp
1571CDMAKE=${CDENV} ${MAKE} ${NOFUN}
1572CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDTP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1573XDDESTDIR=${DESTDIR}${XDTP}
1574.if !defined(OSREL)
1575OSREL!= uname -r | sed -e 's/[-(].*//'
1576.endif
1577
1578.ORDER: xdev-build xdev-install
1579xdev: xdev-build xdev-install
1580
1581.ORDER: _xb-build-tools _xb-cross-tools
1582xdev-build: _xb-build-tools _xb-cross-tools
1583
1584_xb-build-tools:
1585	${_+_}@cd ${.CURDIR}; \
1586	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1587
1588_xb-cross-tools:
1589.for _tool in \
1590    gnu/usr.bin/binutils \
1591    gnu/usr.bin/cc \
1592    usr.bin/ar
1593	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1594	cd ${.CURDIR}/${_tool}; \
1595	${CDMAKE} DIRPRFX=${_tool}/ obj; \
1596	${CDMAKE} DIRPRFX=${_tool}/ depend; \
1597	${CDMAKE} DIRPRFX=${_tool}/ all
1598.endfor
1599
1600_xi-mtree:
1601	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1602	mkdir -p ${XDDESTDIR}
1603	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1604	    -p ${XDDESTDIR} >/dev/null
1605	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1606	    -p ${XDDESTDIR}/usr >/dev/null
1607	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1608	    -p ${XDDESTDIR}/usr/include >/dev/null
1609
1610.ORDER: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1611xdev-install: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1612
1613_xi-cross-tools:
1614	@echo "_xi-cross-tools"
1615.for _tool in \
1616    gnu/usr.bin/binutils \
1617    gnu/usr.bin/cc \
1618    usr.bin/ar
1619	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
1620	cd ${.CURDIR}/${_tool}; \
1621	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
1622.endfor
1623
1624_xi-includes:
1625	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
1626		DESTDIR=${XDDESTDIR}
1627
1628_xi-libraries:
1629	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
1630		DESTDIR=${XDDESTDIR}
1631
1632_xi-links:
1633	${_+_}cd ${XDDESTDIR}/usr/bin; \
1634		for i in *; do \
1635			ln -sf ../../${XDTP}/usr/bin/$$i \
1636			    ../../../../usr/bin/${XDDIR}-$$i; \
1637			ln -sf ../../${XDTP}/usr/bin/$$i \
1638			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
1639		done
1640.else
1641xdev xdev-buil xdev-install:
1642	@echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
1643.endif
1644