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