Makefile.inc1 revision 245316
1#
2# $FreeBSD: head/Makefile.inc1 245316 2013-01-11 23:08:19Z 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		INSTALL="install -N ${.CURDIR}/etc"
345.endif
346
347IMAKEENV=	${CROSSENV:N_LDSCRIPTROOT=*}
348IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1 \
349		INSTALL="install -N ${.CURDIR}/etc" \
350		MTREE_CMD="nmtree -N ${.CURDIR}/etc"
351.if empty(.MAKEFLAGS:M-n)
352IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
353		LD_LIBRARY_PATH=${INSTALLTMP} \
354		PATH_LOCALE=${INSTALLTMP}/locale
355IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
356.else
357IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
358.endif
359
360# kernel stage
361KMAKEENV=	${WMAKEENV}
362KMAKE=		${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME}
363
364#
365# buildworld
366#
367# Attempt to rebuild the entire system, with reasonable chance of
368# success, regardless of how old your existing system is.
369#
370_worldtmp:
371.if ${.CURDIR:C/[^,]//g} != ""
372#	The m4 build of sendmail files doesn't like it if ',' is used
373#	anywhere in the path of it's files.
374	@echo
375	@echo "*** Error: path to source tree contains a comma ','"
376	@echo
377	false
378.endif
379	@echo
380	@echo "--------------------------------------------------------------"
381	@echo ">>> Rebuilding the temporary build tree"
382	@echo "--------------------------------------------------------------"
383.if !defined(NO_CLEAN)
384	rm -rf ${WORLDTMP}
385.if defined(LIB32TMP)
386	rm -rf ${LIB32TMP}
387.endif
388.else
389	rm -rf ${WORLDTMP}/legacy/usr/include
390#	XXX - These three can depend on any header file.
391	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
392	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c
393	rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
394.endif
395.for _dir in \
396    lib usr legacy/usr
397	mkdir -p ${WORLDTMP}/${_dir}
398.endfor
399	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
400	    -p ${WORLDTMP}/legacy/usr >/dev/null
401.if ${MK_GROFF} != "no"
402	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
403	    -p ${WORLDTMP}/legacy/usr >/dev/null
404.endif
405	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
406	    -p ${WORLDTMP}/usr >/dev/null
407	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
408	    -p ${WORLDTMP}/usr/include >/dev/null
409	ln -sf ${.CURDIR}/sys ${WORLDTMP}
410.if ${MK_BIND_LIBS} != "no"
411	mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \
412	    -p ${WORLDTMP}/usr/include >/dev/null
413.endif
414.for _mtree in ${LOCAL_MTREE}
415	mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
416.endfor
417_legacy:
418	@echo
419	@echo "--------------------------------------------------------------"
420	@echo ">>> stage 1.1: legacy release compatibility shims"
421	@echo "--------------------------------------------------------------"
422	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
423_bootstrap-tools:
424	@echo
425	@echo "--------------------------------------------------------------"
426	@echo ">>> stage 1.2: bootstrap tools"
427	@echo "--------------------------------------------------------------"
428	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
429_cleanobj:
430.if !defined(NO_CLEAN)
431	@echo
432	@echo "--------------------------------------------------------------"
433	@echo ">>> stage 2.1: cleaning up the object tree"
434	@echo "--------------------------------------------------------------"
435	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
436.if defined(LIB32TMP)
437	${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/}
438.endif
439.endif
440_obj:
441	@echo
442	@echo "--------------------------------------------------------------"
443	@echo ">>> stage 2.2: rebuilding the object tree"
444	@echo "--------------------------------------------------------------"
445	${_+_}cd ${.CURDIR}; ${WMAKE} par-obj
446_build-tools:
447	@echo
448	@echo "--------------------------------------------------------------"
449	@echo ">>> stage 2.3: build tools"
450	@echo "--------------------------------------------------------------"
451	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
452_cross-tools:
453	@echo
454	@echo "--------------------------------------------------------------"
455	@echo ">>> stage 3: cross tools"
456	@echo "--------------------------------------------------------------"
457	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
458_includes:
459	@echo
460	@echo "--------------------------------------------------------------"
461	@echo ">>> stage 4.1: building includes"
462	@echo "--------------------------------------------------------------"
463	${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
464_libraries:
465	@echo
466	@echo "--------------------------------------------------------------"
467	@echo ">>> stage 4.2: building libraries"
468	@echo "--------------------------------------------------------------"
469	${_+_}cd ${.CURDIR}; \
470	    ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
471	    -DWITHOUT_MAN -DNO_PROFILE libraries
472_depend:
473	@echo
474	@echo "--------------------------------------------------------------"
475	@echo ">>> stage 4.3: make dependencies"
476	@echo "--------------------------------------------------------------"
477	${_+_}cd ${.CURDIR}; ${WMAKE} par-depend
478everything:
479	@echo
480	@echo "--------------------------------------------------------------"
481	@echo ">>> stage 4.4: building everything"
482	@echo "--------------------------------------------------------------"
483	${_+_}cd ${.CURDIR}; ${WMAKE} par-all
484.if defined(LIB32TMP)
485build32:
486	@echo
487	@echo "--------------------------------------------------------------"
488	@echo ">>> stage 5.1: building 32 bit shim libraries"
489	@echo "--------------------------------------------------------------"
490	mkdir -p ${LIB32TMP}/usr/include
491	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
492	    -p ${LIB32TMP}/usr >/dev/null
493	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
494	    -p ${LIB32TMP}/usr/include >/dev/null
495	mkdir -p ${WORLDTMP}
496	ln -sf ${.CURDIR}/sys ${WORLDTMP}
497.for _t in obj includes
498	cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t}
499	cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t}
500.if ${MK_CDDL} != "no"
501	cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t}
502.endif
503	cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t}
504.if ${MK_CRYPT} != "no"
505	cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t}
506.endif
507.if ${MK_KERBEROS} != "no"
508	cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t}
509.endif
510.endfor
511.for _dir in usr.bin/lex/lib
512	cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj
513.endfor
514.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic
515	cd ${.CURDIR}/${_dir}; \
516	    WORLDTMP=${WORLDTMP} \
517	    MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \
518	    MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
519	    DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \
520	    -DEARLY_BUILD build-tools
521.endfor
522	cd ${.CURDIR}; \
523	    ${LIB32WMAKE} -f Makefile.inc1 libraries
524.for _t in obj depend all
525	cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \
526	    DIRPRFX=libexec/rtld-elf/ ${_t}
527	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \
528	    DIRPRFX=usr.bin/ldd ${_t}
529.endfor
530
531distribute32 install32:
532	cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
533.if ${MK_CDDL} != "no"
534	cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
535.endif
536	cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
537.if ${MK_CRYPT} != "no"
538	cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
539.endif
540.if ${MK_KERBEROS} != "no"
541	cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
542.endif
543	cd ${.CURDIR}/libexec/rtld-elf; \
544	    PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
545	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}
546.endif
547
548WMAKE_TGTS=
549.if !defined(SUBDIR_OVERRIDE)
550WMAKE_TGTS+=	_worldtmp _legacy _bootstrap-tools
551.endif
552WMAKE_TGTS+=	_cleanobj _obj _build-tools
553.if !defined(SUBDIR_OVERRIDE)
554WMAKE_TGTS+=	_cross-tools
555.endif
556WMAKE_TGTS+=	_includes _libraries _depend everything
557.if defined(LIB32TMP) && ${MK_LIB32} != "no"
558WMAKE_TGTS+=	build32
559.endif
560
561buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
562.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
563
564buildworld_prologue:
565	@echo "--------------------------------------------------------------"
566	@echo ">>> World build started on `LC_ALL=C date`"
567	@echo "--------------------------------------------------------------"
568
569buildworld_epilogue:
570	@echo
571	@echo "--------------------------------------------------------------"
572	@echo ">>> World build completed on `LC_ALL=C date`"
573	@echo "--------------------------------------------------------------"
574
575#
576# We need to have this as a target because the indirection between Makefile
577# and Makefile.inc1 causes the correct PATH to be used, rather than a
578# modification of the current environment's PATH.  In addition, we need
579# to quote multiword values.
580#
581buildenvvars:
582	@echo ${WMAKEENV:Q}
583
584buildenv:
585	@echo Entering world for ${TARGET_ARCH}:${TARGET}
586	@cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true
587
588TOOLCHAIN_TGTS=	${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
589toolchain: ${TOOLCHAIN_TGTS}
590kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
591
592#
593# installcheck
594#
595# Checks to be sure system is ready for installworld/installkernel.
596#
597installcheck:
598
599#
600# Require DESTDIR to be set if installing for a different architecture.
601#
602.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE}
603.if !make(distributeworld)
604installcheck: installcheck_DESTDIR
605installcheck_DESTDIR:
606.if !defined(DESTDIR) || empty(DESTDIR)
607	@echo "ERROR: Please set DESTDIR!"; \
608	false
609.endif
610.endif
611.endif
612
613#
614# Required install tools to be saved in a scratch dir for safety.
615#
616.if ${MK_INFO} != "no"
617_install-info=	install-info
618.endif
619.if ${MK_ZONEINFO} != "no"
620_zoneinfo=	zic tzsetup
621.endif
622
623ITOOLS=	[ awk cap_mkdb cat chflags chmod chown \
624	date echo egrep find grep ${_install-info} \
625	ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
626	test true uname wc ${_zoneinfo}
627
628#
629# distributeworld
630#
631# Distributes everything compiled by a `buildworld'.
632#
633# installworld
634#
635# Installs everything compiled by a 'buildworld'.
636#
637
638# Non-base distributions produced by the base system
639EXTRA_DISTRIBUTIONS=	doc
640.if ${MK_GAMES} != "no"
641EXTRA_DISTRIBUTIONS+=	games
642.endif
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	rm -f ${METALOG}
670.if make(distributeworld)
671.for dist in ${EXTRA_DISTRIBUTIONS}
672	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
673	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
674	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
675	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
676	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
677	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
678	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
679.endfor
680	-mkdir ${DESTDIR}/${DISTDIR}/base
681	${_+_}cd ${.CURDIR}; ${IMAKE} distrib-dirs \
682	    DESTDIR=${DESTDIR}/${DISTDIR}/base
683.endif
684	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
685	    ${IMAKEENV} rm -rf ${INSTALLTMP}
686.if make(distributeworld)
687.for dist in ${EXTRA_DISTRIBUTIONS}
688	find ${DESTDIR}/${DISTDIR}/${dist} -empty -delete
689.endfor
690.endif
691
692packageworld:
693.for dist in base ${EXTRA_DISTRIBUTIONS}
694	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
695	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz .
696.endfor
697
698#
699# reinstall
700#
701# If you have a build server, you can NFS mount the source and obj directories
702# and do a 'make reinstall' on the *client* to install new binaries from the
703# most recent server build.
704#
705reinstall:
706	@echo "--------------------------------------------------------------"
707	@echo ">>> Making hierarchy"
708	@echo "--------------------------------------------------------------"
709	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
710	    LOCAL_MTREE=${LOCAL_MTREE} hierarchy
711	@echo
712	@echo "--------------------------------------------------------------"
713	@echo ">>> Installing everything"
714	@echo "--------------------------------------------------------------"
715	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
716.if defined(LIB32TMP) && ${MK_LIB32} != "no"
717	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
718.endif
719
720redistribute:
721	@echo "--------------------------------------------------------------"
722	@echo ">>> Distributing everything"
723	@echo "--------------------------------------------------------------"
724	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
725.if defined(LIB32TMP) && ${MK_LIB32} != "no"
726	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
727	    DISTRIBUTION=lib32
728.endif
729
730distrib-dirs distribution:
731	cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
732	    INSTALL="install -N ${.CURDIR}/etc" ${.TARGET}
733
734#
735# buildkernel and installkernel
736#
737# Which kernels to build and/or install is specified by setting
738# KERNCONF. If not defined a GENERIC kernel is built/installed.
739# Only the existing (depending TARGET) config files are used
740# for building kernels and only the first of these is designated
741# as the one being installed.
742#
743# Note that we have to use TARGET instead of TARGET_ARCH when
744# we're in kernel-land. Since only TARGET_ARCH is (expected) to
745# be set to cross-build, we have to make sure TARGET is set
746# properly.
747
748.if defined(KERNFAST)
749NO_KERNELCLEAN=	t
750NO_KERNELCONFIG=	t
751NO_KERNELDEPEND=	t
752NO_KERNELOBJ=		t
753# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
754.if !defined(KERNCONF) && ${KERNFAST} != "1"
755KERNCONF=${KERNFAST}
756.endif
757.endif
758.if !defined(KERNCONF) && defined(KERNEL)
759KERNCONF=	${KERNEL}
760KERNWARN=
761.else
762.if ${TARGET_ARCH} == "powerpc64"
763KERNCONF?=	GENERIC64
764.else
765KERNCONF?=	GENERIC
766.endif
767.endif
768INSTKERNNAME?=	kernel
769
770KERNSRCDIR?=	${.CURDIR}/sys
771KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
772KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
773KERNCONFDIR?=	${KRNLCONFDIR}
774
775BUILDKERNELS=
776INSTALLKERNEL=
777.for _kernel in ${KERNCONF}
778.if exists(${KERNCONFDIR}/${_kernel})
779BUILDKERNELS+=	${_kernel}
780.if empty(INSTALLKERNEL)
781INSTALLKERNEL= ${_kernel}
782.endif
783.endif
784.endfor
785
786#
787# buildkernel
788#
789# Builds all kernels defined by BUILDKERNELS.
790#
791buildkernel:
792.if empty(BUILDKERNELS)
793	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
794	false
795.endif
796.if defined(KERNWARN)
797	@echo "--------------------------------------------------------------"
798	@echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
799	@echo "--------------------------------------------------------------"
800	@sleep 3
801.endif
802	@echo
803.for _kernel in ${BUILDKERNELS}
804	@echo "--------------------------------------------------------------"
805	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
806	@echo "--------------------------------------------------------------"
807	@echo "===> ${_kernel}"
808	mkdir -p ${KRNLOBJDIR}
809.if !defined(NO_KERNELCONFIG)
810	@echo
811	@echo "--------------------------------------------------------------"
812	@echo ">>> stage 1: configuring the kernel"
813	@echo "--------------------------------------------------------------"
814	cd ${KRNLCONFDIR}; \
815		PATH=${TMPPATH} \
816		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
817			${KERNCONFDIR}/${_kernel}
818.endif
819.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
820	@echo
821	@echo "--------------------------------------------------------------"
822	@echo ">>> stage 2.1: cleaning up the object tree"
823	@echo "--------------------------------------------------------------"
824	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
825.endif
826.if !defined(NO_KERNELOBJ)
827	@echo
828	@echo "--------------------------------------------------------------"
829	@echo ">>> stage 2.2: rebuilding the object tree"
830	@echo "--------------------------------------------------------------"
831	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
832.endif
833	@echo
834	@echo "--------------------------------------------------------------"
835	@echo ">>> stage 2.3: build tools"
836	@echo "--------------------------------------------------------------"
837	cd ${KRNLOBJDIR}/${_kernel}; \
838	    PATH=${BPATH}:${PATH} \
839	    MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
840	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF -DEARLY_BUILD \
841	    -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
842# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
843.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
844.for target in obj depend all
845	cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
846	    PATH=${BPATH}:${PATH} \
847	    MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
848	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF -DEARLY_BUILD ${target}
849.endfor
850.endif
851.if !defined(NO_KERNELDEPEND)
852	@echo
853	@echo "--------------------------------------------------------------"
854	@echo ">>> stage 3.1: making dependencies"
855	@echo "--------------------------------------------------------------"
856	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
857.endif
858	@echo
859	@echo "--------------------------------------------------------------"
860	@echo ">>> stage 3.2: building everything"
861	@echo "--------------------------------------------------------------"
862	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
863	@echo "--------------------------------------------------------------"
864	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
865	@echo "--------------------------------------------------------------"
866.endfor
867
868#
869# installkernel, etc.
870#
871# Install the kernel defined by INSTALLKERNEL
872#
873installkernel installkernel.debug \
874reinstallkernel reinstallkernel.debug: installcheck
875.if empty(INSTALLKERNEL)
876	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
877	false
878.endif
879	@echo "--------------------------------------------------------------"
880	@echo ">>> Installing kernel ${INSTALLKERNEL}"
881	@echo "--------------------------------------------------------------"
882	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
883	    ${CROSSENV} PATH=${TMPPATH} \
884	    ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
885
886distributekernel distributekernel.debug:
887.if empty(INSTALLKERNEL)
888	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
889	false
890.endif
891	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
892	    ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
893	    DESTDIR=${DESTDIR}/${DISTDIR}/kernel \
894	    ${.TARGET:S/distributekernel/install/}
895.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
896	cd ${KRNLOBJDIR}/${_kernel}; \
897	    ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
898	    KERNEL=${INSTKERNNAME}.${_kernel} \
899	    DESTDIR=${DESTDIR}/${DISTDIR}/kernel.${_kernel} \
900	    ${.TARGET:S/distributekernel/install/}
901.endfor
902
903packagekernel:
904	cd ${DESTDIR}/${DISTDIR}/kernel; \
905	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz .
906.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
907	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
908	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz .
909.endfor
910
911#
912# doxygen
913#
914# Build the API documentation with doxygen
915#
916doxygen:
917	@if [ ! -x `/usr/bin/which doxygen` ]; then \
918		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
919		exit 1; \
920	fi
921	cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
922
923#
924# update
925#
926# Update the source tree(s), by running cvsup/cvs/svn to update to the
927# latest copy.
928#
929update:
930.if defined(SUP_UPDATE)
931	@echo "--------------------------------------------------------------"
932	@echo ">>> Running ${SUP}"
933	@echo "--------------------------------------------------------------"
934.if defined(SUPFILE)
935	@${SUP} ${SUPFLAGS} ${SUPFILE}
936.endif
937.if defined(SUPFILE1)
938	@${SUP} ${SUPFLAGS} ${SUPFILE1}
939.endif
940.if defined(SUPFILE2)
941	@${SUP} ${SUPFLAGS} ${SUPFILE2}
942.endif
943.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
944	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
945.endif
946.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
947	@${SUP} ${SUPFLAGS} ${DOCSUPFILE}
948.endif
949.if defined(WWWSUPFILE) && !defined(NO_WWWUPDATE)
950	@${SUP} ${SUPFLAGS} ${WWWSUPFILE}
951.endif
952.endif
953.if defined(CVS_UPDATE)
954	@cd ${.CURDIR} ; \
955	if [ -d CVS ] ; then \
956		echo "--------------------------------------------------------------" ; \
957		echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} ; \
958		echo "--------------------------------------------------------------" ; \
959		echo ${CVS} -R -q update ${CVSFLAGS} ; \
960		${CVS} -R -q update ${CVSFLAGS} ; \
961	fi
962.endif
963.if defined(SVN_UPDATE)
964	@cd ${.CURDIR} ; \
965	if [ -d .svn ] ; then \
966		echo "--------------------------------------------------------------" ; \
967		echo ">>> Updating ${.CURDIR} using Subversion" ; \
968		echo "--------------------------------------------------------------" ; \
969		echo ${SVN} update ${SVNFLAGS} ; \
970		${SVN} update ${SVNFLAGS} ; \
971	fi
972.endif
973
974#
975# ------------------------------------------------------------------------
976#
977# From here onwards are utility targets used by the 'make world' and
978# related targets.  If your 'world' breaks, you may like to try to fix
979# the problem and manually run the following targets to attempt to
980# complete the build.  Beware, this is *not* guaranteed to work, you
981# need to have a pretty good grip on the current state of the system
982# to attempt to manually finish it.  If in doubt, 'make world' again.
983#
984
985#
986# legacy: Build compatibility shims for the next three targets
987#
988legacy:
989.if ${BOOTSTRAPPING} < 700055 && ${BOOTSTRAPPING} != 0
990	@echo "ERROR: Source upgrades from versions prior to 7.0 not supported."; \
991	false
992.endif
993.for _tool in tools/build
994	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
995	    cd ${.CURDIR}/${_tool}; \
996	    ${MAKE} DIRPRFX=${_tool}/ obj; \
997	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
998	    ${MAKE} DIRPRFX=${_tool}/ depend; \
999	    ${MAKE} DIRPRFX=${_tool}/ all; \
1000	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1001.endfor
1002
1003#
1004# bootstrap-tools: Build tools needed for compatibility
1005#
1006.if ${MK_GAMES} != "no"
1007_strfile=	games/fortune/strfile
1008.endif
1009
1010.if ${MK_CXX} != "no"
1011_gperf=		gnu/usr.bin/gperf
1012.endif
1013
1014.if ${MK_GROFF} != "no"
1015_groff=		gnu/usr.bin/groff
1016.endif
1017
1018.if ${BOOTSTRAPPING} < 800022
1019_ar=		usr.bin/ar
1020.endif
1021
1022.if ${BOOTSTRAPPING} < 800013
1023_mklocale=	usr.bin/mklocale
1024.endif
1025
1026.if ${BOOTSTRAPPING} < 900002
1027_sed=		usr.bin/sed
1028.endif
1029
1030.if ${BOOTSTRAPPING} < 900006
1031_lex=		usr.bin/lex
1032.endif
1033
1034.if ${BOOTSTRAPPING} < 1000013
1035_yacc=		usr.bin/yacc
1036.endif
1037
1038.if ${BOOTSTRAPPING} < 1000026
1039_nmtree=	lib/libnetbsd \
1040		usr.sbin/nmtree
1041.endif
1042
1043.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1044_awk=		usr.bin/awk
1045.endif
1046
1047.if ${MK_BSNMP} != "no" && !exists(/usr/sbin/gensnmptree)
1048_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1049.endif
1050
1051.if ${MK_CLANG} != "no"
1052_clang_tblgen= \
1053	lib/clang/libllvmsupport \
1054	lib/clang/libllvmtablegen \
1055	usr.bin/clang/tblgen \
1056	usr.bin/clang/clang-tblgen
1057.endif
1058
1059# dtrace tools are required for older bootstrap env and cross-build
1060.if ${MK_CDDL} != "no" && \
1061    ((${BOOTSTRAPPING} < 800038 && \
1062          !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)) \
1063      || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH}))
1064_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
1065    lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1066.endif
1067
1068.if ${MK_FDT} != "no"
1069_dtc= gnu/usr.bin/dtc
1070.endif
1071
1072.if ${MK_KERBEROS} != "no"
1073_kerberos5_bootstrap_tools= \
1074	kerberos5/tools/make-roken \
1075	kerberos5/lib/libroken \
1076	kerberos5/lib/libvers \
1077	kerberos5/tools/asn1_compile \
1078	kerberos5/tools/slc
1079.endif
1080
1081#	Please document (add comment) why something is in 'bootstrap-tools'.
1082#	Try to bound the building of the bootstrap-tool to just the
1083#	FreeBSD versions that need the tool built at this stage of the build.
1084bootstrap-tools:
1085.for _tool in \
1086    ${_clang_tblgen} \
1087    ${_kerberos5_bootstrap_tools} \
1088    ${_dtrace_tools} \
1089    ${_strfile} \
1090    ${_gperf} \
1091    ${_groff} \
1092    ${_ar} \
1093    ${_dtc} \
1094    ${_awk} \
1095    usr.bin/lorder \
1096    usr.bin/makewhatis \
1097    ${_mklocale} \
1098    usr.bin/rpcgen \
1099    ${_sed} \
1100    ${_yacc} \
1101    ${_lex} \
1102    usr.bin/xinstall \
1103    ${_gensnmptree} \
1104    usr.sbin/config \
1105    ${_nmtree}
1106	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1107		cd ${.CURDIR}/${_tool}; \
1108		${MAKE} DIRPRFX=${_tool}/ obj; \
1109		${MAKE} DIRPRFX=${_tool}/ depend; \
1110		${MAKE} DIRPRFX=${_tool}/ all; \
1111		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1112.endfor
1113
1114#
1115# build-tools: Build special purpose build tools
1116#
1117.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
1118_aicasm= sys/modules/aic7xxx/aicasm
1119.endif
1120
1121.if !defined(NO_SHARE)
1122_share=	share/syscons/scrnmaps
1123.endif
1124
1125.if ${MK_GCC} != "no"
1126_gcc_tools= gnu/usr.bin/cc/cc_tools
1127.endif
1128
1129.if ${MK_RESCUE} != "no"
1130_rescue= rescue/rescue
1131.endif
1132
1133build-tools:
1134.for _tool in \
1135    bin/csh \
1136    bin/sh \
1137    ${_rescue} \
1138    ${LOCAL_TOOL_DIRS} \
1139    lib/ncurses/ncurses \
1140    lib/ncurses/ncursesw \
1141    ${_share} \
1142    ${_aicasm} \
1143    usr.bin/awk \
1144    lib/libmagic \
1145    usr.bin/mkesdb_static \
1146    usr.bin/mkcsmapper_static
1147	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1148		cd ${.CURDIR}/${_tool}; \
1149		${MAKE} DIRPRFX=${_tool}/ obj; \
1150		${MAKE} DIRPRFX=${_tool}/ build-tools
1151.endfor
1152.for _tool in \
1153    ${_gcc_tools}
1154	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1155		cd ${.CURDIR}/${_tool}; \
1156		${MAKE} DIRPRFX=${_tool}/ obj; \
1157		${MAKE} DIRPRFX=${_tool}/ depend; \
1158		${MAKE} DIRPRFX=${_tool}/ all
1159.endfor
1160
1161#
1162# cross-tools: Build cross-building tools
1163#
1164.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1165.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1166_btxld=		usr.sbin/btxld
1167.endif
1168.endif
1169.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1170.if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1171_crunchide=	usr.sbin/crunch/crunchide
1172.endif
1173.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1174_kgzip=		usr.sbin/kgzip
1175.endif
1176.endif
1177
1178.if ${MK_BINUTILS} != "no"
1179_binutils=	gnu/usr.bin/binutils
1180.endif
1181
1182.if ${MK_CLANG} != "no" && (${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang")
1183_clang=		usr.bin/clang
1184_clang_libs=	lib/clang
1185.endif
1186
1187.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98")
1188_cc=		gnu/usr.bin/cc
1189.endif
1190
1191cross-tools:
1192.for _tool in \
1193    ${_clang_libs} \
1194    ${_clang} \
1195    ${_binutils} \
1196    ${_cc} \
1197    usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1198    ${_btxld} \
1199    ${_crunchide} \
1200    ${_kgzip}
1201	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1202		cd ${.CURDIR}/${_tool}; \
1203		${MAKE} DIRPRFX=${_tool}/ obj; \
1204		${MAKE} DIRPRFX=${_tool}/ depend; \
1205		${MAKE} DIRPRFX=${_tool}/ all; \
1206		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1207.endfor
1208
1209#
1210# hierarchy - ensure that all the needed directories are present
1211#
1212hierarchy hier:
1213	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
1214.for _mtree in ${LOCAL_MTREE}
1215	mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/${_mtree} \
1216	    -p ${DESTDIR}/
1217.endfor
1218
1219#
1220# libraries - build all libraries, and install them under ${DESTDIR}.
1221#
1222# The list of libraries with dependents (${_prebuild_libs}) and their
1223# interdependencies (__L) are built automatically by the
1224# ${.CURDIR}/tools/make_libdeps.sh script.
1225#
1226libraries:
1227	cd ${.CURDIR}; \
1228	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
1229	    ${MAKE} -f Makefile.inc1 _startup_libs; \
1230	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1231	    ${MAKE} -f Makefile.inc1 _generic_libs;
1232
1233#
1234# static libgcc.a prerequisite for shared libc
1235#
1236_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1237
1238# These dependencies are not automatically generated:
1239#
1240# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1241# all shared libraries for ELF.
1242#
1243_startup_libs=	gnu/lib/csu
1244.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1245_startup_libs+=	lib/csu/${MACHINE_ARCH}-elf
1246.elif exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
1247_startup_libs+=	lib/csu/${MACHINE_ARCH}
1248.else
1249_startup_libs+=	lib/csu/${MACHINE_CPUARCH}
1250.endif
1251_startup_libs+=	gnu/lib/libgcc
1252_startup_libs+=	lib/libcompiler_rt
1253_startup_libs+=	lib/libc
1254.if ${MK_LIBCPLUSPLUS} != "no"
1255_startup_libs+=	lib/libcxxrt
1256.endif
1257
1258gnu/lib/libgcc__L: lib/libc__L
1259.if ${MK_LIBCPLUSPLUS} != "no"
1260lib/libcxxrt__L: gnu/lib/libgcc__L
1261.endif
1262
1263_prebuild_libs=	${_kerberos5_lib_libasn1} \
1264		${_kerberos5_lib_libhdb} \
1265		${_kerberos5_lib_libheimbase} \
1266		${_kerberos5_lib_libheimntlm} \
1267		${_kerberos5_lib_libheimsqlite} \
1268		${_kerberos5_lib_libheimipcc} \
1269		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1270		${_kerberos5_lib_libroken} \
1271		${_kerberos5_lib_libwind} \
1272		${_lib_atf_libatf_c} \
1273		lib/libbz2 ${_libcom_err} lib/libcrypt \
1274		lib/libexpat \
1275		${_lib_libgssapi} ${_lib_libipx} \
1276		lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1277		lib/ncurses/ncurses lib/ncurses/ncursesw \
1278		lib/libopie lib/libpam ${_lib_libthr} \
1279		lib/libradius lib/libsbuf lib/libtacplus \
1280		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1281		lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1282		${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1283		${_secure_lib_libssl}
1284
1285.if ${MK_ATF} != "no"
1286_lib_atf_libatf_c=	lib/atf/libatf-c
1287.endif
1288
1289.if ${MK_LIBTHR} != "no"
1290_lib_libthr=	lib/libthr
1291.endif
1292
1293.if ${MK_OFED} != "no"
1294_ofed_lib=	contrib/ofed/usr.lib/
1295.endif
1296
1297_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1298.for _DIR in ${LOCAL_LIB_DIRS}
1299.if exists(${.CURDIR}/${_DIR}/Makefile)
1300_generic_libs+= ${_DIR}
1301.endif
1302.endfor
1303
1304lib/libopie__L lib/libtacplus__L: lib/libmd__L
1305
1306.if ${MK_CDDL} != "no"
1307_cddl_lib_libumem= cddl/lib/libumem
1308_cddl_lib_libnvpair= cddl/lib/libnvpair
1309_cddl_lib= cddl/lib
1310.endif
1311
1312.if ${MK_CRYPT} != "no"
1313.if ${MK_OPENSSL} != "no"
1314_secure_lib_libcrypto= secure/lib/libcrypto
1315_secure_lib_libssl= secure/lib/libssl
1316lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1317.if ${MK_OPENSSH} != "no"
1318_secure_lib_libssh= secure/lib/libssh
1319secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1320.if ${MK_KERBEROS_SUPPORT} != "no"
1321secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1322    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1323    lib/libmd__L kerberos5/lib/libroken__L
1324.endif
1325.endif
1326.endif
1327_secure_lib=	secure/lib
1328.endif
1329
1330.if ${MK_KERBEROS} != "no"
1331kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1332kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1333    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1334    kerberos5/lib/libwind__L kerberos5/lib/libheimsqlite__L 
1335kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1336    kerberos5/lib/libroken__L lib/libcom_err__L
1337kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1338    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1339kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1340    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1341    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1342    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1343kerberos5/lib/libroken__L: lib/libcrypt__L
1344kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1345kerberos5/lib/libheimbase__L: lib/libthr__L
1346kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1347kerberos5/lib/libheimsqlite__L: lib/libthr__L
1348.endif
1349
1350.if ${MK_GSSAPI} != "no"
1351_lib_libgssapi=	lib/libgssapi
1352.endif
1353
1354.if ${MK_IPX} != "no"
1355_lib_libipx=	lib/libipx
1356.endif
1357
1358.if ${MK_KERBEROS} != "no"
1359_kerberos5_lib=	kerberos5/lib
1360_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1361_kerberos5_lib_libhdb= kerberos5/lib/libhdb
1362_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1363_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1364_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1365_kerberos5_lib_libroken= kerberos5/lib/libroken
1366_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1367_kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite
1368_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1369_kerberos5_lib_libwind= kerberos5/lib/libwind
1370_libcom_err= lib/libcom_err
1371.endif
1372
1373.if ${MK_NIS} != "no"
1374_lib_libypclnt=	lib/libypclnt
1375.endif
1376
1377.if ${MK_OPENSSL} == "no"
1378lib/libradius__L: lib/libmd__L
1379.endif
1380
1381.for _lib in ${_prereq_libs}
1382${_lib}__PL: .PHONY
1383.if exists(${.CURDIR}/${_lib})
1384	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1385		cd ${.CURDIR}/${_lib}; \
1386		${MAKE} DIRPRFX=${_lib}/ obj; \
1387		${MAKE} DIRPRFX=${_lib}/ depend; \
1388		${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1389		${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1390.endif
1391.endfor
1392
1393.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1394${_lib}__L: .PHONY
1395.if exists(${.CURDIR}/${_lib})
1396	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1397		cd ${.CURDIR}/${_lib}; \
1398		${MAKE} DIRPRFX=${_lib}/ obj; \
1399		${MAKE} DIRPRFX=${_lib}/ depend; \
1400		${MAKE} DIRPRFX=${_lib}/ all; \
1401		${MAKE} DIRPRFX=${_lib}/ install
1402.endif
1403.endfor
1404
1405# libpam is special: we need to build static PAM modules before
1406# static PAM library, and dynamic PAM library before dynamic PAM
1407# modules.
1408lib/libpam__L: .PHONY
1409	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1410		cd ${.CURDIR}/lib/libpam; \
1411		${MAKE} DIRPRFX=lib/libpam/ obj; \
1412		${MAKE} DIRPRFX=lib/libpam/ depend; \
1413		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1414		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1415
1416_prereq_libs: ${_prereq_libs:S/$/__PL/}
1417_startup_libs: ${_startup_libs:S/$/__L/}
1418_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1419_generic_libs: ${_generic_libs:S/$/__L/}
1420
1421.for __target in all clean cleandepend cleandir depend includes obj
1422.for entry in ${SUBDIR}
1423${entry}.${__target}__D: .PHONY
1424	${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1425		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1426		edir=${entry}.${MACHINE_ARCH}; \
1427		cd ${.CURDIR}/$${edir}; \
1428	else \
1429		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1430		edir=${entry}; \
1431		cd ${.CURDIR}/$${edir}; \
1432	fi; \
1433	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1434.endfor
1435par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1436.endfor
1437
1438.include <bsd.subdir.mk>
1439
1440.if make(check-old) || make(check-old-dirs) || \
1441    make(check-old-files) || make(check-old-libs) || \
1442    make(delete-old) || make(delete-old-dirs) || \
1443    make(delete-old-files) || make(delete-old-libs)
1444
1445#
1446# check for / delete old files section
1447#
1448
1449.include "ObsoleteFiles.inc"
1450
1451OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1452else you can not start such an application. Consult UPDATING for more \
1453information regarding how to cope with the removal/revision bump of a \
1454specific library."
1455
1456.if !defined(BATCH_DELETE_OLD_FILES)
1457RM_I=-i
1458.else
1459RM_I=-v
1460.endif
1461
1462delete-old-files:
1463	@echo ">>> Removing old files (only deletes safe to delete libs)"
1464# Ask for every old file if the user really wants to remove it.
1465# It's annoying, but better safe than sorry.
1466# NB: We cannot pass the list of OLD_FILES as a parameter because the
1467# argument list will get too long. Using .for/.endfor make "loops" will make
1468# the Makefile parser segfault.
1469	@exec 3<&0; \
1470	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1471	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1472	while read file; do \
1473		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1474			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1475			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1476		fi; \
1477	done
1478# Remove catpages without corresponding manpages.
1479	@exec 3<&0; \
1480	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1481	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1482	while read catpage; do \
1483		read manpage; \
1484		if [ ! -e "$${manpage}" ]; then \
1485			rm ${RM_I} $${catpage} <&3; \
1486	        fi; \
1487	done
1488	@echo ">>> Old files removed"
1489
1490check-old-files:
1491	@echo ">>> Checking for old files"
1492	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1493	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1494	while read file; do \
1495		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1496		 	echo "${DESTDIR}/$${file}"; \
1497		fi; \
1498	done
1499# Check for catpages without corresponding manpages.
1500	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1501	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1502	while read catpage; do \
1503		read manpage; \
1504		if [ ! -e "$${manpage}" ]; then \
1505			echo $${catpage}; \
1506	        fi; \
1507	done
1508
1509delete-old-libs:
1510	@echo ">>> Removing old libraries"
1511	@echo "${OLD_LIBS_MESSAGE}" | fmt
1512	@exec 3<&0; \
1513	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1514	    -V OLD_LIBS | xargs -n1 | \
1515	while read file; do \
1516		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1517			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1518			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1519		fi; \
1520	done
1521	@echo ">>> Old libraries removed"
1522
1523check-old-libs:
1524	@echo ">>> Checking for old libraries"
1525	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1526	    -V OLD_LIBS | xargs -n1 | \
1527	while read file; do \
1528		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1529			echo "${DESTDIR}/$${file}"; \
1530		fi; \
1531	done
1532
1533delete-old-dirs:
1534	@echo ">>> Removing old directories"
1535	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1536	    -V OLD_DIRS | xargs -n1 | \
1537	while read dir; do \
1538		if [ -d "${DESTDIR}/$${dir}" ]; then \
1539			rmdir -v "${DESTDIR}/$${dir}" || true; \
1540		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1541			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1542		fi; \
1543	done
1544	@echo ">>> Old directories removed"
1545
1546check-old-dirs:
1547	@echo ">>> Checking for old directories"
1548	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1549	    -V OLD_DIRS | xargs -n1 | \
1550	while read dir; do \
1551		if [ -d "${DESTDIR}/$${dir}" ]; then \
1552			echo "${DESTDIR}/$${dir}"; \
1553		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1554			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1555		fi; \
1556	done
1557
1558delete-old: delete-old-files delete-old-dirs
1559	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1560
1561check-old: check-old-files check-old-libs check-old-dirs
1562	@echo "To remove old files and directories run '${MAKE} delete-old'."
1563	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1564
1565.endif
1566
1567#
1568# showconfig - show build configuration.
1569#
1570showconfig:
1571	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort
1572
1573.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1574DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1575
1576.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1577.if exists(${KERNCONFDIR}/${KERNCONF})
1578FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1579	${KERNCONFDIR}/${KERNCONF} ; echo
1580.endif
1581.endif
1582
1583.endif
1584
1585.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1586DTBOUTPUTPATH= ${.CURDIR}
1587.endif
1588
1589#
1590# Build 'standalone' Device Tree Blob
1591#
1592builddtb:
1593	@if [ "${FDT_DTS_FILE}" = "" ]; then \
1594		echo "ERROR: FDT_DTS_FILE must be specified!"; \
1595		exit 1; \
1596	fi;	\
1597	if [ ! -f ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE} ]; then \
1598		echo "ERROR: Specified DTS file (${FDT_DTS_FILE}) does not \
1599			exist!"; \
1600		exit 1;	\
1601	fi;	\
1602	if [ "${DTBOUTPUTPATH}" = "${.CURDIR}" ]; then	\
1603		echo "WARNING: DTB will be placed in the current working \
1604			directory"; \
1605	fi
1606	@PATH=${TMPPATH} \
1607	dtc -O dtb -o \
1608	    ${DTBOUTPUTPATH}/`echo ${FDT_DTS_FILE} | cut -d. -f1`.dtb -b 0 \
1609	    -p 1024 ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE}
1610
1611###############
1612
1613.if defined(XDEV) && defined(XDEV_ARCH)
1614
1615.if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
1616XDEV_CPUTYPE?=${CPUTYPE}
1617.else
1618XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1619.endif
1620
1621NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
1622	-DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
1623	-DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \
1624	TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
1625	CPUTYPE=${XDEV_CPUTYPE}
1626
1627XDDIR=${XDEV_ARCH}-freebsd
1628XDTP=/usr/${XDDIR}
1629CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR}
1630CDENV= ${CDBENV} \
1631	_SHLIBDIRPREFIX=${XDTP} \
1632	TOOLS_PREFIX=${XDTP}
1633CD2ENV=${CDENV} \
1634	MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
1635
1636CDTMP=	${MAKEOBJDIRPREFIX}/${XDEV}/${.CURDIR}/tmp
1637CDMAKE=${CDENV} ${MAKE} ${NOFUN}
1638CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDTP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1639XDDESTDIR=${DESTDIR}${XDTP}
1640.if !defined(OSREL)
1641OSREL!= uname -r | sed -e 's/[-(].*//'
1642.endif
1643
1644.ORDER: xdev-build xdev-install
1645xdev: xdev-build xdev-install
1646
1647.ORDER: _xb-build-tools _xb-cross-tools
1648xdev-build: _xb-build-tools _xb-cross-tools
1649
1650_xb-build-tools:
1651	${_+_}@cd ${.CURDIR}; \
1652	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1653
1654_xb-cross-tools:
1655.for _tool in \
1656    gnu/usr.bin/binutils \
1657    gnu/usr.bin/cc \
1658    usr.bin/ar
1659	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1660	cd ${.CURDIR}/${_tool}; \
1661	${CDMAKE} DIRPRFX=${_tool}/ obj; \
1662	${CDMAKE} DIRPRFX=${_tool}/ depend; \
1663	${CDMAKE} DIRPRFX=${_tool}/ all
1664.endfor
1665
1666_xi-mtree:
1667	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1668	mkdir -p ${XDDESTDIR}
1669	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1670	    -p ${XDDESTDIR} >/dev/null
1671	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1672	    -p ${XDDESTDIR}/usr >/dev/null
1673	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1674	    -p ${XDDESTDIR}/usr/include >/dev/null
1675
1676.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1677xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1678
1679_xi-cross-tools:
1680	@echo "_xi-cross-tools"
1681.for _tool in \
1682    gnu/usr.bin/binutils \
1683    gnu/usr.bin/cc \
1684    usr.bin/ar
1685	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
1686	cd ${.CURDIR}/${_tool}; \
1687	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
1688.endfor
1689
1690_xi-includes:
1691	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
1692		DESTDIR=${XDDESTDIR}
1693
1694_xi-libraries:
1695	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
1696		DESTDIR=${XDDESTDIR}
1697
1698_xi-links:
1699	${_+_}cd ${XDDESTDIR}/usr/bin; \
1700		for i in *; do \
1701			ln -sf ../../${XDTP}/usr/bin/$$i \
1702			    ../../../../usr/bin/${XDDIR}-$$i; \
1703			ln -sf ../../${XDTP}/usr/bin/$$i \
1704			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
1705		done
1706.else
1707xdev xdev-buil xdev-install:
1708	@echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
1709.endif
1710