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