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