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