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