Makefile.inc1 revision 233098
1193323Sed#
2193323Sed# $FreeBSD: head/Makefile.inc1 233098 2012-03-17 22:12:09Z peter $
3193323Sed#
4193323Sed# Make command line options:
5193323Sed#	-DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6193323Sed#	-DNO_CLEAN do not clean at all
7193323Sed#	-DNO_SHARE do not go into share subdir
8193323Sed#	-DKERNFAST define NO_KERNEL{CONFIG,CLEAN,DEPEND,OBJ}
9193323Sed#	-DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
10193323Sed#	-DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
11193323Sed#	-DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
12193323Sed#	-DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
13193323Sed#	-DNO_PORTSUPDATE do not update ports in ${MAKE} update
14193323Sed#	-DNO_DOCUPDATE do not update doc in ${MAKE} update
15249423Sdim#	-DNO_WWWUPDATE do not update www in ${MAKE} update
16249423Sdim#	-DNO_CTF do not run the DTrace CTF conversion tools on built objects
17193323Sed#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
18249423Sdim#	LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools
19249423Sdim#	    list
20249423Sdim#	TARGET="machine" to crossbuild world for a different machine type
21193323Sed#	TARGET_ARCH= may be required when a TARGET supports multiple endians
22249423Sdim#	BUILDENV_SHELL= shell to launch for the buildenv target (def:/bin/sh)
23249423Sdim
24193323Sed#
25198090Srdivacky# The intended user-driven targets are:
26198090Srdivacky# buildworld  - rebuild *everything*, including glue to help do upgrades
27249423Sdim# installworld- install everything built by "buildworld"
28249423Sdim# doxygen     - build API documentation of the kernel
29193323Sed# update      - convenient way to update your source tree (eg: cvsup/cvs)
30193323Sed#
31193323Sed# Standard targets (not defined here) are documented in the makefiles in
32193323Sed# /usr/share/mk.  These include:
33193323Sed#		obj depend all install clean cleandepend cleanobj
34193323Sed
35193323Sed# You are supposed to define both of these when calling Makefile.inc1
36193323Sed# directly.  However, some old scripts don't.  Cope for the moment, but
37193323Sed# issue a new warning for a transition period.
38243830Sdim.if defined(TARGET) && !defined(TARGET_ARCH)
39243830Sdim.warning "You must pass both TARGET and TARGET_ARCH to Makefile.inc1.  Setting TARGET_ARCH=${TARGET}."
40243830SdimTARGET_ARCH=${TARGET}
41193323Sed.endif
42243830Sdim.if !defined(TARGET) || !defined(TARGET_ARCH)
43193323Sed.error "Both TARGET and TARGET_ARCH must be defined."
44193323Sed.endif
45193323Sed
46193323Sed.include <bsd.own.mk>
47198892Srdivacky.include <bsd.arch.inc.mk>
48193323Sed
49193323Sed# We must do share/info early so that installation of info `dir'
50193323Sed# entries works correctly.  Do it first since it is less likely to
51234353Sdim# grow dependencies on include and lib than vice versa.
52193323Sed#
53193323Sed# We must do lib/ and libexec/ before bin/, because if installworld
54193323Sed# installs a new /bin/sh, the 'make' command will *immediately*
55193323Sed# use that new version.  And the new (dynamically-linked) /bin/sh
56193323Sed# will expect to find appropriate libraries in /lib and /libexec.
57193323Sed#
58193323SedSUBDIR=	share/info lib libexec
59193323SedSUBDIR+=bin
60193323Sed.if ${MK_GAMES} != "no"
61193323SedSUBDIR+=games
62193323Sed.endif
63193323Sed.if ${MK_CDDL} != "no"
64193323SedSUBDIR+=cddl
65193323Sed.endif
66193323SedSUBDIR+=gnu include
67198892Srdivacky.if ${MK_KERBEROS} != "no"
68193323SedSUBDIR+=kerberos5
69193323Sed.endif
70193323Sed.if ${MK_RESCUE} != "no"
71193323SedSUBDIR+=rescue
72193323Sed.endif
73193323SedSUBDIR+=sbin
74193323Sed.if ${MK_CRYPT} != "no"
75193323SedSUBDIR+=secure
76193323Sed.endif
77193323Sed.if !defined(NO_SHARE)
78193323SedSUBDIR+=share
79193323Sed.endif
80193323SedSUBDIR+=sys usr.bin usr.sbin
81193323Sed.if ${MK_OFED} != "no"
82193323SedSUBDIR+=contrib/ofed
83193323Sed.endif
84193323Sed#
85193323Sed# We must do etc/ last for install/distribute to work.
86193323Sed#
87193323SedSUBDIR+=etc
88193323Sed
89193323Sed# These are last, since it is nice to at least get the base system
90193323Sed# rebuilt before you do them.
91193323Sed.for _DIR in ${LOCAL_DIRS}
92193323Sed.if exists(${.CURDIR}/${_DIR}/Makefile)
93193323SedSUBDIR+= ${_DIR}
94193323Sed.endif
95193323Sed.endfor
96193323Sed
97193323Sed.if defined(SUBDIR_OVERRIDE)
98193323SedSUBDIR=		${SUBDIR_OVERRIDE}
99193323Sed.endif
100193323Sed
101193323Sed.if defined(NOCLEAN)
102193323SedNO_CLEAN=	${NOCLEAN}
103193323Sed.endif
104193323Sed.if defined(NO_CLEANDIR)
105263508SdimCLEANDIR=	clean cleandepend
106263508Sdim.else
107193323SedCLEANDIR=	cleandir
108193323Sed.endif
109234353Sdim
110234353SdimLOCAL_TOOL_DIRS?=
111193323Sed
112193323SedBUILDENV_SHELL?=/bin/sh
113193323Sed
114193323SedCVS?=		cvs
115193323SedCVSFLAGS?=	-A -P -d -I!
116193323SedSVN?=		svn
117202375SrdivackySVNFLAGS?=	-r HEAD
118193323SedSUP?=		/usr/bin/csup
119193323SedSUPFLAGS?=	-g -L 2
120234353Sdim.if defined(SUPHOST)
121193323SedSUPFLAGS+=	-h ${SUPHOST}
122193323Sed.endif
123193323Sed
124198090SrdivackyMAKEOBJDIRPREFIX?=	/usr/obj
125193323Sed.if !defined(OSRELDATE)
126193323Sed.if exists(/usr/include/osreldate.h)
127193323SedOSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
128193323Sed		/usr/include/osreldate.h
129193323Sed.else
130193323SedOSRELDATE=	0
131193323Sed.endif
132193323Sed.endif
133193323Sed
134193323Sed.if !defined(VERSION)
135193323SedVERSION!=	uname -srp
136193323SedVERSION+=	${OSRELDATE}
137193323Sed.endif
138193323Sed
139193323SedKNOWN_ARCHES?=	amd64 arm armeb/arm i386 i386/pc98 ia64 mipsel/mips mipseb/mips mips64el/mips mips64eb/mips mipsn32el/mips mipsn32eb/mips powerpc powerpc64/powerpc sparc64
140193323Sed.if ${TARGET} == ${TARGET_ARCH}
141198090Srdivacky_t=		${TARGET}
142193323Sed.else
143198090Srdivacky_t=		${TARGET_ARCH}/${TARGET}
144202375Srdivacky.endif
145193323Sed.for _t in ${_t}
146202375Srdivacky.if empty(KNOWN_ARCHES:M${_t})
147198090Srdivacky.error Unknown target ${TARGET_ARCH}:${TARGET}.
148193323Sed.endif
149193323Sed.endfor
150198090Srdivacky
151198090Srdivacky.if ${TARGET} == ${MACHINE}
152193323SedTARGET_CPUTYPE?=${CPUTYPE}
153193323Sed.else
154193323SedTARGET_CPUTYPE?=
155193323Sed.endif
156193323Sed
157193323Sed.if !empty(TARGET_CPUTYPE)
158193323Sed_TARGET_CPUTYPE=${TARGET_CPUTYPE}
159193323Sed.else
160193323Sed_TARGET_CPUTYPE=dummy
161193323Sed.endif
162193323Sed_CPUTYPE!=	MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
163193323Sed		-f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
164193323Sed.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
165193323Sed.error CPUTYPE global should be set with ?=.
166193323Sed.endif
167234353Sdim.if make(buildworld)
168193323SedBUILD_ARCH!=	uname -p
169193323Sed.if ${MACHINE_ARCH} != ${BUILD_ARCH}
170193323Sed.error To cross-build, set TARGET_ARCH.
171193323Sed.endif
172193323Sed.endif
173193323Sed.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
174193323SedOBJTREE=	${MAKEOBJDIRPREFIX}
175193323Sed.else
176193323SedOBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
177193323Sed.endif
178193323SedWORLDTMP=	${OBJTREE}${.CURDIR}/tmp
179193323Sed# /usr/games added for fortune which depend on strfile
180193323SedBPATH=		${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games
181193323SedXPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
182193323SedSTRICTTMPPATH=	${BPATH}:${XPATH}
183202375SrdivackyTMPPATH=	${STRICTTMPPATH}:${PATH}
184193323Sed
185193323Sed#
186193323Sed# Avoid running mktemp(1) unless actually needed.
187193323Sed# It may not be functional, e.g., due to new ABI
188193323Sed# when in the middle of installing over this system.
189193323Sed#
190193323Sed.if make(distributeworld) || make(installworld)
191193323SedINSTALLTMP!=	/usr/bin/mktemp -d -u -t install
192193323Sed.endif
193193323Sed
194193323Sed#
195193323Sed# Building a world goes through the following stages
196193323Sed#
197193323Sed# 1. legacy stage [BMAKE]
198193323Sed#	This stage is responsible for creating compatibility
199193323Sed#	shims that are needed by the bootstrap-tools,
200193323Sed#	build-tools and cross-tools stages.
201193323Sed# 1. bootstrap-tools stage [BMAKE]
202193323Sed#	This stage is responsible for creating programs that
203193323Sed#	are needed for backward compatibility reasons. They
204193323Sed#	are not built as cross-tools.
205193323Sed# 2. build-tools stage [TMAKE]
206193323Sed#	This stage is responsible for creating the object
207193323Sed#	tree and building any tools that are needed during
208193323Sed#	the build process.
209193323Sed# 3. cross-tools stage [XMAKE]
210193323Sed#	This stage is responsible for creating any tools that
211193323Sed#	are needed for cross-builds. A cross-compiler is one
212193323Sed#	of them.
213218893Sdim# 4. world stage [WMAKE]
214193323Sed#	This stage actually builds the world.
215193323Sed# 5. install stage (optional) [IMAKE]
216193323Sed#	This stage installs a previously built world.
217193323Sed#
218193323Sed
219193323SedBOOTSTRAPPING?=	0
220193323Sed
221193323Sed# Common environment for world related stages
222193323SedCROSSENV=	MAKEOBJDIRPREFIX=${OBJTREE} \
223198090Srdivacky		MACHINE_ARCH=${TARGET_ARCH} \
224218893Sdim		MACHINE=${TARGET} \
225193323Sed		CPUTYPE=${TARGET_CPUTYPE}
226193323Sed.if ${OSRELDATE} < 700044
227193323SedCROSSENV+=	AR=gnu-ar RANLIB=gnu-ranlib
228193323Sed.endif
229193323Sed.if ${MK_GROFF} != "no"
230193323SedCROSSENV+=	GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
231198090Srdivacky		GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
232218893Sdim		GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
233193323Sed.endif
234193323Sed
235193323Sed# bootstrap-tools stage
236193323SedBMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
237193323Sed		PATH=${BPATH}:${PATH} \
238193323Sed		WORLDTMP=${WORLDTMP} \
239193323Sed		VERSION="${VERSION}" \
240193323Sed		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
241202375SrdivackyBMAKE=		MAKEOBJDIRPREFIX=${WORLDTMP} \
242193323Sed		${BMAKEENV} ${MAKE} -f Makefile.inc1 \
243193323Sed		DESTDIR= \
244193323Sed		BOOTSTRAPPING=${OSRELDATE} \
245193323Sed		SSP_CFLAGS= \
246193323Sed		-DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
247193323Sed		-DNO_PIC -DNO_PROFILE -DNO_SHARED \
248193323Sed		-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
249193323Sed
250193323Sed# build-tools stage
251193323SedTMAKE=		MAKEOBJDIRPREFIX=${OBJTREE} \
252193323Sed		${BMAKEENV} ${MAKE} -f Makefile.inc1 \
253234353Sdim		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
254193323Sed		DESTDIR= \
255193323Sed		BOOTSTRAPPING=${OSRELDATE} \
256234353Sdim		SSP_CFLAGS= \
257224145Sdim		-DNO_LINT \
258224145Sdim		-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
259224145Sdim
260193323Sed# cross-tools stage
261193323SedXMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
262193323Sed		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
263193323Sed		-DWITHOUT_GDB
264224145Sdim
265193323Sed# world stage
266193323SedWMAKEENV=	${CROSSENV} \
267193323Sed		_SHLIBDIRPREFIX=${WORLDTMP} \
268193323Sed		VERSION="${VERSION}" \
269193323Sed		INSTALL="sh ${.CURDIR}/tools/install.sh" \
270193323Sed		PATH=${TMPPATH}
271193323Sed.if ${MK_CDDL} == "no"
272193323SedWMAKEENV+=	NO_CTF=1
273193323Sed.endif
274193323SedWMAKE=		${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP}
275193323Sed
276234353Sdim.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
277193323Sed# 32 bit world
278193323SedLIB32TMP=	${OBJTREE}${.CURDIR}/lib32
279193323Sed
280193323Sed.if ${TARGET_ARCH} == "amd64"
281193323Sed.if empty(TARGET_CPUTYPE)
282193323SedLIB32CPUFLAGS=	-march=i686 -mmmx -msse -msse2
283193323Sed.else
284193323SedLIB32CPUFLAGS=	-march=${TARGET_CPUTYPE}
285193323Sed.endif
286193323SedLIB32WMAKEENV=	MACHINE=i386 MACHINE_ARCH=i386 \
287193323Sed		MACHINE_CPU="i686 mmx sse sse2" \
288193323Sed		LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \
289193323Sed		AS="${AS} --32"
290193323Sed
291193323Sed.elif ${TARGET_ARCH} == "powerpc64"
292193323Sed.if empty(TARGET_CPUTYPE)
293193323SedLIB32CPUFLAGS=	-mcpu=powerpc
294193323Sed.else
295193323SedLIB32CPUFLAGS=	-mcpu=${TARGET_CPUTYPE}
296193323Sed.endif
297193323SedLIB32WMAKEENV=	MACHINE=powerpc MACHINE_ARCH=powerpc \
298193323Sed		LD="${LD} -m elf32ppc_fbsd"
299193323Sed.endif
300193323Sed
301193323Sed
302193323SedLIB32FLAGS=	-m32 ${LIB32CPUFLAGS} -DCOMPAT_32BIT \
303193323Sed		-isystem ${LIB32TMP}/usr/include/ \
304193323Sed		-L${LIB32TMP}/usr/lib32 \
305193323Sed		-B${LIB32TMP}/usr/lib32
306193323Sed
307193323Sed# Yes, the flags are redundant.
308193323SedLIB32WMAKEENV+=	MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \
309193323Sed		_SHLIBDIRPREFIX=${LIB32TMP} \
310193323Sed		VERSION="${VERSION}" \
311193323Sed		INSTALL="sh ${.CURDIR}/tools/install.sh" \
312193323Sed		PATH=${TMPPATH} \
313193323Sed		CC="${CC} ${LIB32FLAGS}" \
314193323Sed		CXX="${CXX} ${LIB32FLAGS}" \
315193323Sed		LIBDIR=/usr/lib32 \
316193323Sed		SHLIBDIR=/usr/lib32
317193323Sed
318193323SedLIB32WMAKE=	${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \
319193323Sed		-DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \
320193323Sed		-DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \
321193323Sed		DESTDIR=${LIB32TMP}
322193323SedLIB32IMAKE=	${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS
323193323Sed.endif
324193323Sed
325193323Sed# install stage
326193323SedIMAKEENV=	${CROSSENV}
327193323SedIMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1
328193323Sed.if empty(.MAKEFLAGS:M-n)
329193323SedIMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
330193323Sed		LD_LIBRARY_PATH=${INSTALLTMP} \
331193323Sed		PATH_LOCALE=${INSTALLTMP}/locale
332193323SedIMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
333193323Sed.else
334193323SedIMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
335193323Sed.endif
336193323Sed
337234353Sdim# kernel stage
338193323SedKMAKEENV=	${WMAKEENV}
339243830SdimKMAKE=		${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME}
340243830Sdim
341243830Sdim#
342193323Sed# buildworld
343193323Sed#
344193323Sed# Attempt to rebuild the entire system, with reasonable chance of
345193323Sed# success, regardless of how old your existing system is.
346193323Sed#
347193323Sed_worldtmp:
348193323Sed.if ${.CURDIR:C/[^,]//g} != ""
349193323Sed#	The m4 build of sendmail files doesn't like it if ',' is used
350193323Sed#	anywhere in the path of it's files.
351193323Sed	@echo
352193323Sed	@echo "*** Error: path to source tree contains a comma ','"
353202375Srdivacky	@echo
354193323Sed	false
355193323Sed.endif
356193323Sed	@echo
357193323Sed	@echo "--------------------------------------------------------------"
358193323Sed	@echo ">>> Rebuilding the temporary build tree"
359193323Sed	@echo "--------------------------------------------------------------"
360193323Sed.if !defined(NO_CLEAN)
361193323Sed	rm -rf ${WORLDTMP}
362193323Sed.if defined(LIB32TMP)
363193323Sed	rm -rf ${LIB32TMP}
364193323Sed.endif
365193323Sed.else
366193323Sed	rm -rf ${WORLDTMP}/legacy/usr/include
367193323Sed#	XXX - These three can depend on any header file.
368193323Sed	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
369193323Sed	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c
370193323Sed	rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
371193323Sed.endif
372193323Sed.for _dir in \
373193323Sed    lib usr legacy/usr
374193323Sed	mkdir -p ${WORLDTMP}/${_dir}
375193323Sed.endfor
376193323Sed	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
377193323Sed	    -p ${WORLDTMP}/legacy/usr >/dev/null
378193323Sed.if ${MK_GROFF} != "no"
379193323Sed	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
380193323Sed	    -p ${WORLDTMP}/legacy/usr >/dev/null
381193323Sed.endif
382193323Sed	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
383193323Sed	    -p ${WORLDTMP}/usr >/dev/null
384193323Sed	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
385193323Sed	    -p ${WORLDTMP}/usr/include >/dev/null
386193323Sed	ln -sf ${.CURDIR}/sys ${WORLDTMP}
387193323Sed.if ${MK_BIND_LIBS} != "no"
388193323Sed	mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \
389193323Sed	    -p ${WORLDTMP}/usr/include >/dev/null
390263508Sdim.endif
391234353Sdim_legacy:
392193323Sed	@echo
393193323Sed	@echo "--------------------------------------------------------------"
394193323Sed	@echo ">>> stage 1.1: legacy release compatibility shims"
395234353Sdim	@echo "--------------------------------------------------------------"
396193323Sed	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
397193323Sed_bootstrap-tools:
398193323Sed	@echo
399193323Sed	@echo "--------------------------------------------------------------"
400193323Sed	@echo ">>> stage 1.2: bootstrap tools"
401193323Sed	@echo "--------------------------------------------------------------"
402193323Sed	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
403193323Sed_cleanobj:
404193323Sed.if !defined(NO_CLEAN)
405193323Sed	@echo
406193323Sed	@echo "--------------------------------------------------------------"
407193323Sed	@echo ">>> stage 2.1: cleaning up the object tree"
408193323Sed	@echo "--------------------------------------------------------------"
409193323Sed	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
410193323Sed.if defined(LIB32TMP)
411193323Sed	${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/}
412193323Sed.endif
413193323Sed.endif
414193323Sed_obj:
415193323Sed	@echo
416193323Sed	@echo "--------------------------------------------------------------"
417243830Sdim	@echo ">>> stage 2.2: rebuilding the object tree"
418243830Sdim	@echo "--------------------------------------------------------------"
419243830Sdim	${_+_}cd ${.CURDIR}; ${WMAKE} par-obj
420243830Sdim_build-tools:
421243830Sdim	@echo
422243830Sdim	@echo "--------------------------------------------------------------"
423193323Sed	@echo ">>> stage 2.3: build tools"
424193323Sed	@echo "--------------------------------------------------------------"
425193323Sed	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
426193323Sed_cross-tools:
427193323Sed	@echo
428193323Sed	@echo "--------------------------------------------------------------"
429193323Sed	@echo ">>> stage 3: cross tools"
430193323Sed	@echo "--------------------------------------------------------------"
431193323Sed	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
432193323Sed_includes:
433198090Srdivacky	@echo
434193323Sed	@echo "--------------------------------------------------------------"
435224145Sdim	@echo ">>> stage 4.1: building includes"
436224145Sdim	@echo "--------------------------------------------------------------"
437224145Sdim	${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
438234353Sdim_libraries:
439193323Sed	@echo
440193323Sed	@echo "--------------------------------------------------------------"
441193323Sed	@echo ">>> stage 4.2: building libraries"
442193323Sed	@echo "--------------------------------------------------------------"
443193323Sed	${_+_}cd ${.CURDIR}; \
444193323Sed	    ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
445193323Sed	    -DWITHOUT_MAN -DNO_PROFILE libraries
446212904Sdim_depend:
447212904Sdim	@echo
448212904Sdim	@echo "--------------------------------------------------------------"
449212904Sdim	@echo ">>> stage 4.3: make dependencies"
450212904Sdim	@echo "--------------------------------------------------------------"
451263508Sdim	${_+_}cd ${.CURDIR}; ${WMAKE} par-depend
452212904Sdimeverything:
453212904Sdim	@echo
454239462Sdim	@echo "--------------------------------------------------------------"
455239462Sdim	@echo ">>> stage 4.4: building everything"
456239462Sdim	@echo "--------------------------------------------------------------"
457239462Sdim	${_+_}cd ${.CURDIR}; ${WMAKE} par-all
458212904Sdim.if defined(LIB32TMP)
459212904Sdimbuild32:
460212904Sdim	@echo
461239462Sdim	@echo "--------------------------------------------------------------"
462212904Sdim	@echo ">>> stage 5.1: building 32 bit shim libraries"
463212904Sdim	@echo "--------------------------------------------------------------"
464212904Sdim	mkdir -p ${LIB32TMP}/usr/include
465193323Sed	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
466193323Sed	    -p ${LIB32TMP}/usr >/dev/null
467193323Sed	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
468193323Sed	    -p ${LIB32TMP}/usr/include >/dev/null
469193323Sed	mkdir -p ${WORLDTMP}
470263508Sdim	ln -sf ${.CURDIR}/sys ${WORLDTMP}
471193323Sed.if ${MK_KERBEROS} != "no"
472193323Sed.for _t in obj depend all
473193323Sed	cd ${.CURDIR}/kerberos5/tools; \
474193323Sed	    MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
475193323Sed	    DIRPRFX=kerberos5/tools/ ${_t}
476193323Sed.endfor
477193323Sed.endif
478193323Sed.for _t in obj includes
479212904Sdim	cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t}
480212904Sdim	cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t}
481193323Sed.if ${MK_CDDL} != "no"
482193323Sed	cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t}
483193323Sed.endif
484218893Sdim	cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t}
485212904Sdim.if ${MK_CRYPT} != "no"
486212904Sdim	cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t}
487212904Sdim.endif
488218893Sdim.if ${MK_KERBEROS} != "no"
489218893Sdim	cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t}
490212904Sdim.endif
491212904Sdim.endfor
492212904Sdim.for _dir in usr.bin/lex/lib
493212904Sdim	cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj
494212904Sdim.endfor
495212904Sdim.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic
496212904Sdim	cd ${.CURDIR}/${_dir}; \
497212904Sdim	    MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
498224145Sdim	    DIRPRFX=${_dir}/ build-tools
499224145Sdim.endfor
500212904Sdim	cd ${.CURDIR}; \
501212904Sdim	    ${LIB32WMAKE} -f Makefile.inc1 libraries
502212904Sdim.for _t in obj depend all
503212904Sdim	cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \
504212904Sdim	    DIRPRFX=libexec/rtld-elf/ ${_t}
505212904Sdim	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \
506212904Sdim	    DIRPRFX=usr.bin/ldd ${_t}
507212904Sdim.endfor
508212904Sdim
509212904Sdimdistribute32 install32:
510212904Sdim	cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
511193323Sed.if ${MK_CDDL} != "no"
512193323Sed	cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
513224145Sdim.endif
514224145Sdim	cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
515193323Sed.if ${MK_CRYPT} != "no"
516234353Sdim	cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
517212904Sdim.endif
518193323Sed.if ${MK_KERBEROS} != "no"
519193323Sed	cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
520193323Sed.endif
521193323Sed	cd ${.CURDIR}/libexec/rtld-elf; \
522193323Sed	    PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
523193323Sed	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}
524193323Sed.endif
525193323Sed
526193323SedWMAKE_TGTS=
527193323Sed.if !defined(SUBDIR_OVERRIDE)
528193323SedWMAKE_TGTS+=	_worldtmp _legacy _bootstrap-tools
529193323Sed.endif
530193323SedWMAKE_TGTS+=	_cleanobj _obj _build-tools
531193323Sed.if !defined(SUBDIR_OVERRIDE)
532193323SedWMAKE_TGTS+=	_cross-tools
533193323Sed.endif
534193323SedWMAKE_TGTS+=	_includes _libraries _depend everything
535193323Sed.if defined(LIB32TMP) && ${MK_LIB32} != "no"
536193323SedWMAKE_TGTS+=	build32
537193323Sed.endif
538193323Sed
539193323Sedbuildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
540193323Sed.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
541193323Sed
542193323Sedbuildworld_prologue:
543193323Sed	@echo "--------------------------------------------------------------"
544193323Sed	@echo ">>> World build started on `LC_ALL=C date`"
545193323Sed	@echo "--------------------------------------------------------------"
546193323Sed
547193323Sedbuildworld_epilogue:
548193323Sed	@echo
549193323Sed	@echo "--------------------------------------------------------------"
550193323Sed	@echo ">>> World build completed on `LC_ALL=C date`"
551193323Sed	@echo "--------------------------------------------------------------"
552193323Sed
553193323Sed#
554193323Sed# We need to have this as a target because the indirection between Makefile
555193323Sed# and Makefile.inc1 causes the correct PATH to be used, rather than a
556193323Sed# modification of the current environment's PATH.  In addition, we need
557193323Sed# to quote multiword values.
558193323Sed#
559193323Sedbuildenvvars:
560193323Sed	@echo ${WMAKEENV:Q}
561193323Sed
562193323Sedbuildenv:
563193323Sed	@echo Entering world for ${TARGET_ARCH}:${TARGET}
564193323Sed	@cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true
565193323Sed
566193323SedTOOLCHAIN_TGTS=	${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
567193323Sedtoolchain: ${TOOLCHAIN_TGTS}
568193323Sedkernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
569193323Sed
570263508Sdim#
571193323Sed# installcheck
572193323Sed#
573193323Sed# Checks to be sure system is ready for installworld/installkernel.
574198090Srdivacky#
575193323Sedinstallcheck:
576210299Sed
577193323Sed#
578193323Sed# Require DESTDIR to be set if installing for a different architecture.
579221345Sdim#
580221345Sdim.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE}
581221345Sdim.if !make(distributeworld)
582221345Sdiminstallcheck: installcheck_DESTDIR
583221345Sdiminstallcheck_DESTDIR:
584221345Sdim.if !defined(DESTDIR) || empty(DESTDIR)
585221345Sdim	@echo "ERROR: Please set DESTDIR!"; \
586193323Sed	false
587221345Sdim.endif
588193323Sed.endif
589221345Sdim.endif
590221345Sdim
591221345Sdim#
592221345Sdim# Check for missing UIDs/GIDs.
593193323Sed#
594193323SedCHECK_UIDS=
595193323SedCHECK_GIDS=	audit
596193323Sed.if ${MK_SENDMAIL} != "no"
597202375SrdivackyCHECK_UIDS+=	smmsp
598198090SrdivackyCHECK_GIDS+=	smmsp
599243830Sdim.endif
600193323Sed.if ${MK_PF} != "no"
601193323SedCHECK_UIDS+=	proxy
602193323SedCHECK_GIDS+=	proxy authpf
603202375Srdivacky.endif
604198090Srdivackyinstallcheck: installcheck_UGID
605193323Sedinstallcheck_UGID:
606243830Sdim.for uid in ${CHECK_UIDS}
607193323Sed	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
608193323Sed		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
609193323Sed		false; \
610193323Sed	fi
611193323Sed.endfor
612198090Srdivacky.for gid in ${CHECK_GIDS}
613193323Sed	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
614193323Sed		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
615193323Sed		false; \
616193323Sed	fi
617193323Sed.endfor
618193323Sed
619193323Sed#
620193323Sed# Required install tools to be saved in a scratch dir for safety.
621193323Sed#
622193323Sed.if ${MK_INFO} != "no"
623193323Sed_install-info=	install-info
624193323Sed.endif
625193323Sed.if ${MK_ZONEINFO} != "no"
626193323Sed_zoneinfo=	zic tzsetup
627193323Sed.endif
628193323Sed
629193323SedITOOLS=	[ awk cap_mkdb cat chflags chmod chown \
630198090Srdivacky	date echo egrep find grep ${_install-info} \
631193323Sed	ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
632198090Srdivacky	test true uname wc ${_zoneinfo}
633193323Sed
634234353Sdim#
635193323Sed# distributeworld
636193323Sed#
637193323Sed# Distributes everything compiled by a `buildworld'.
638243830Sdim#
639243830Sdim# installworld
640193323Sed#
641243830Sdim# Installs everything compiled by a 'buildworld'.
642243830Sdim#
643243830Sdim
644243830Sdim# Non-base distributions produced by the base system
645243830SdimEXTRA_DISTRIBUTIONS=	doc games
646243830Sdim.if defined(LIB32TMP) && ${MK_LIB32} != "no"
647243830SdimEXTRA_DISTRIBUTIONS+=	lib32
648243830Sdim.endif
649243830Sdim
650243830Sdimdistributeworld installworld: installcheck
651243830Sdim	mkdir -p ${INSTALLTMP}
652243830Sdim	progs=$$(for prog in ${ITOOLS}; do \
653243830Sdim		if progpath=`which $$prog`; then \
654243830Sdim			echo $$progpath; \
655243830Sdim		else \
656243830Sdim			echo "Required tool $$prog not found in PATH." >&2; \
657243830Sdim			exit 1; \
658243830Sdim		fi; \
659243830Sdim	    done); \
660243830Sdim	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
661243830Sdim	    while read line; do \
662243830Sdim		set -- $$line; \
663243830Sdim		if [ "$$2 $$3" != "not found" ]; then \
664243830Sdim			echo $$2; \
665243830Sdim		else \
666243830Sdim			echo "Required library $$1 not found." >&2; \
667243830Sdim			exit 1; \
668243830Sdim		fi; \
669243830Sdim	    done); \
670243830Sdim	cp $$libs $$progs ${INSTALLTMP}
671243830Sdim	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
672243830Sdim.if make(distributeworld)
673243830Sdim.for dist in ${EXTRA_DISTRIBUTIONS}
674243830Sdim	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
675243830Sdim	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
676243830Sdim	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
677243830Sdim	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
678243830Sdim	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
679243830Sdim	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
680243830Sdim	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
681243830Sdim.endfor
682243830Sdim	-mkdir ${DESTDIR}/${DISTDIR}/base
683243830Sdim	${_+_}cd ${.CURDIR}; ${IMAKE} distrib-dirs \
684243830Sdim	    DESTDIR=${DESTDIR}/${DISTDIR}/base
685243830Sdim.endif
686243830Sdim	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
687243830Sdim	    ${IMAKEENV} rm -rf ${INSTALLTMP}
688243830Sdim.if make(distributeworld)
689243830Sdim.for dist in ${EXTRA_DISTRIBUTIONS}
690243830Sdim	find ${DESTDIR}/${DISTDIR}/${dist} -empty -delete
691243830Sdim.endfor
692243830Sdim.endif
693243830Sdim
694243830Sdimpackageworld:
695243830Sdim.for dist in base ${EXTRA_DISTRIBUTIONS}
696243830Sdim	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
697243830Sdim	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz .
698243830Sdim.endfor
699243830Sdim
700243830Sdim#
701243830Sdim# reinstall
702243830Sdim#
703243830Sdim# If you have a build server, you can NFS mount the source and obj directories
704243830Sdim# and do a 'make reinstall' on the *client* to install new binaries from the
705243830Sdim# most recent server build.
706243830Sdim#
707243830Sdimreinstall:
708243830Sdim	@echo "--------------------------------------------------------------"
709243830Sdim	@echo ">>> Making hierarchy"
710243830Sdim	@echo "--------------------------------------------------------------"
711243830Sdim	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
712243830Sdim	@echo
713243830Sdim	@echo "--------------------------------------------------------------"
714243830Sdim	@echo ">>> Installing everything"
715243830Sdim	@echo "--------------------------------------------------------------"
716243830Sdim	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
717243830Sdim.if defined(LIB32TMP) && ${MK_LIB32} != "no"
718243830Sdim	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
719243830Sdim.endif
720243830Sdim
721243830Sdimredistribute:
722243830Sdim	@echo "--------------------------------------------------------------"
723243830Sdim	@echo ">>> Distributing everything"
724243830Sdim	@echo "--------------------------------------------------------------"
725243830Sdim	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
726243830Sdim.if defined(LIB32TMP) && ${MK_LIB32} != "no"
727243830Sdim	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
728243830Sdim	    DISTRIBUTION=lib32
729243830Sdim.endif
730243830Sdim
731243830Sdimdistrib-dirs distribution:
732243830Sdim	cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} ${.TARGET}
733243830Sdim
734243830Sdim#
735243830Sdim# buildkernel and installkernel
736243830Sdim#
737243830Sdim# Which kernels to build and/or install is specified by setting
738243830Sdim# KERNCONF. If not defined a GENERIC kernel is built/installed.
739243830Sdim# Only the existing (depending TARGET) config files are used
740243830Sdim# for building kernels and only the first of these is designated
741243830Sdim# as the one being installed.
742243830Sdim#
743243830Sdim# Note that we have to use TARGET instead of TARGET_ARCH when
744243830Sdim# we're in kernel-land. Since only TARGET_ARCH is (expected) to
745243830Sdim# be set to cross-build, we have to make sure TARGET is set
746243830Sdim# properly.
747243830Sdim
748243830Sdim.if defined(KERNFAST)
749243830SdimNO_KERNELCLEAN=	t
750243830SdimNO_KERNELCONFIG=	t
751243830SdimNO_KERNELDEPEND=	t
752243830SdimNO_KERNELOBJ=		t
753243830Sdim# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
754243830Sdim.if !defined(KERNCONF) && ${KERNFAST} != "1"
755243830SdimKERNCONF=${KERNFAST}
756243830Sdim.endif
757243830Sdim.endif
758243830Sdim.if !defined(KERNCONF) && defined(KERNEL)
759243830SdimKERNCONF=	${KERNEL}
760243830SdimKERNWARN=
761243830Sdim.else
762243830Sdim.if ${TARGET_ARCH} == "powerpc64"
763243830SdimKERNCONF?=	GENERIC64
764243830Sdim.else
765243830SdimKERNCONF?=	GENERIC
766243830Sdim.endif
767243830Sdim.endif
768243830SdimINSTKERNNAME?=	kernel
769243830Sdim
770243830SdimKERNSRCDIR?=	${.CURDIR}/sys
771243830SdimKRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
772243830SdimKRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
773243830SdimKERNCONFDIR?=	${KRNLCONFDIR}
774243830Sdim
775243830SdimBUILDKERNELS=
776243830SdimINSTALLKERNEL=
777243830Sdim.for _kernel in ${KERNCONF}
778243830Sdim.if exists(${KERNCONFDIR}/${_kernel})
779243830SdimBUILDKERNELS+=	${_kernel}
780243830Sdim.if empty(INSTALLKERNEL)
781243830SdimINSTALLKERNEL= ${_kernel}
782243830Sdim.endif
783243830Sdim.endif
784243830Sdim.endfor
785243830Sdim
786243830Sdim#
787243830Sdim# buildkernel
788193323Sed#
789193323Sed# Builds all kernels defined by BUILDKERNELS.
790193323Sed#
791193323Sedbuildkernel:
792193323Sed.if empty(BUILDKERNELS)
793193323Sed	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
794193323Sed	false
795243830Sdim.endif
796243830Sdim.if defined(KERNWARN)
797243830Sdim	@echo "--------------------------------------------------------------"
798243830Sdim	@echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
799243830Sdim	@echo "--------------------------------------------------------------"
800	@sleep 3
801.endif
802	@echo
803.for _kernel in ${BUILDKERNELS}
804	@echo "--------------------------------------------------------------"
805	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
806	@echo "--------------------------------------------------------------"
807	@echo "===> ${_kernel}"
808	mkdir -p ${KRNLOBJDIR}
809.if !defined(NO_KERNELCONFIG)
810	@echo
811	@echo "--------------------------------------------------------------"
812	@echo ">>> stage 1: configuring the kernel"
813	@echo "--------------------------------------------------------------"
814	cd ${KRNLCONFDIR}; \
815		PATH=${TMPPATH} \
816		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
817			${KERNCONFDIR}/${_kernel}
818.endif
819.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
820	@echo
821	@echo "--------------------------------------------------------------"
822	@echo ">>> stage 2.1: cleaning up the object tree"
823	@echo "--------------------------------------------------------------"
824	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
825.endif
826.if !defined(NO_KERNELOBJ)
827	@echo
828	@echo "--------------------------------------------------------------"
829	@echo ">>> stage 2.2: rebuilding the object tree"
830	@echo "--------------------------------------------------------------"
831	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
832.endif
833	@echo
834	@echo "--------------------------------------------------------------"
835	@echo ">>> stage 2.3: build tools"
836	@echo "--------------------------------------------------------------"
837	cd ${KRNLOBJDIR}/${_kernel}; \
838	    PATH=${BPATH}:${PATH} \
839	    MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
840	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \
841	    -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
842# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
843.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
844.for target in obj depend all
845	cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
846	    PATH=${BPATH}:${PATH} \
847	    MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
848	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target}
849.endfor
850.endif
851.if !defined(NO_KERNELDEPEND)
852	@echo
853	@echo "--------------------------------------------------------------"
854	@echo ">>> stage 3.1: making dependencies"
855	@echo "--------------------------------------------------------------"
856	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
857.endif
858	@echo
859	@echo "--------------------------------------------------------------"
860	@echo ">>> stage 3.2: building everything"
861	@echo "--------------------------------------------------------------"
862	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
863	@echo "--------------------------------------------------------------"
864	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
865	@echo "--------------------------------------------------------------"
866.endfor
867
868#
869# installkernel, etc.
870#
871# Install the kernel defined by INSTALLKERNEL
872#
873installkernel installkernel.debug \
874reinstallkernel reinstallkernel.debug: installcheck
875.if empty(INSTALLKERNEL)
876	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
877	false
878.endif
879	@echo "--------------------------------------------------------------"
880	@echo ">>> Installing kernel ${INSTALLKERNEL}"
881	@echo "--------------------------------------------------------------"
882	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
883	    ${CROSSENV} PATH=${TMPPATH} \
884	    ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
885
886distributekernel distributekernel.debug:
887.if empty(INSTALLKERNEL)
888	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
889	false
890.endif
891	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
892	    ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
893	    DESTDIR=${DESTDIR}/${DISTDIR}/kernel \
894	    ${.TARGET:S/distributekernel/install/}
895.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
896	cd ${KRNLOBJDIR}/${_kernel}; \
897	    ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
898	    KERNEL=${INSTKERNNAME}.${_kernel} \
899	    DESTDIR=${DESTDIR}/${DISTDIR}/kernel.${_kernel} \
900	    ${.TARGET:S/distributekernel/install/}
901.endfor
902
903packagekernel:
904	cd ${DESTDIR}/${DISTDIR}/kernel; \
905	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz .
906.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
907	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
908	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz .
909.endfor
910
911#
912# doxygen
913#
914# Build the API documentation with doxygen
915#
916doxygen:
917	@if [ ! -x `/usr/bin/which doxygen` ]; then \
918		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
919		exit 1; \
920	fi
921	cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
922
923#
924# update
925#
926# Update the source tree(s), by running cvsup/cvs/svn to update to the
927# latest copy.
928#
929update:
930.if defined(SUP_UPDATE)
931	@echo "--------------------------------------------------------------"
932	@echo ">>> Running ${SUP}"
933	@echo "--------------------------------------------------------------"
934.if defined(SUPFILE)
935	@${SUP} ${SUPFLAGS} ${SUPFILE}
936.endif
937.if defined(SUPFILE1)
938	@${SUP} ${SUPFLAGS} ${SUPFILE1}
939.endif
940.if defined(SUPFILE2)
941	@${SUP} ${SUPFLAGS} ${SUPFILE2}
942.endif
943.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
944	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
945.endif
946.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
947	@${SUP} ${SUPFLAGS} ${DOCSUPFILE}
948.endif
949.if defined(WWWSUPFILE) && !defined(NO_WWWUPDATE)
950	@${SUP} ${SUPFLAGS} ${WWWSUPFILE}
951.endif
952.endif
953.if defined(CVS_UPDATE)
954	@cd ${.CURDIR} ; \
955	if [ -d CVS ] ; then \
956		echo "--------------------------------------------------------------" ; \
957		echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} ; \
958		echo "--------------------------------------------------------------" ; \
959		echo ${CVS} -R -q update ${CVSFLAGS} ; \
960		${CVS} -R -q update ${CVSFLAGS} ; \
961	fi
962.endif
963.if defined(SVN_UPDATE)
964	@cd ${.CURDIR} ; \
965	if [ -d .svn ] ; then \
966		echo "--------------------------------------------------------------" ; \
967		echo ">>> Updating ${.CURDIR} using Subversion" ; \
968		echo "--------------------------------------------------------------" ; \
969		echo ${SVN} update ${SVNFLAGS} ; \
970		${SVN} update ${SVNFLAGS} ; \
971	fi
972.endif
973
974#
975# ------------------------------------------------------------------------
976#
977# From here onwards are utility targets used by the 'make world' and
978# related targets.  If your 'world' breaks, you may like to try to fix
979# the problem and manually run the following targets to attempt to
980# complete the build.  Beware, this is *not* guaranteed to work, you
981# need to have a pretty good grip on the current state of the system
982# to attempt to manually finish it.  If in doubt, 'make world' again.
983#
984
985#
986# legacy: Build compatibility shims for the next three targets
987#
988legacy:
989.if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0
990	@echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \
991	false
992.endif
993.for _tool in tools/build
994	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
995	    cd ${.CURDIR}/${_tool}; \
996	    ${MAKE} DIRPRFX=${_tool}/ obj; \
997	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
998	    ${MAKE} DIRPRFX=${_tool}/ depend; \
999	    ${MAKE} DIRPRFX=${_tool}/ all; \
1000	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1001.endfor
1002
1003#
1004# bootstrap-tools: Build tools needed for compatibility
1005#
1006.if ${MK_GAMES} != "no"
1007_strfile=	games/fortune/strfile
1008.endif
1009
1010.if ${MK_CXX} != "no"
1011_gperf=		gnu/usr.bin/gperf
1012.endif
1013
1014.if ${MK_GROFF} != "no"
1015_groff=		gnu/usr.bin/groff
1016.endif
1017
1018.if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022
1019_ar=		usr.bin/ar
1020.endif
1021
1022.if ${BOOTSTRAPPING} < 800013
1023_mklocale=	usr.bin/mklocale
1024.endif
1025
1026.if ${BOOTSTRAPPING} < 900002
1027_sed=		usr.bin/sed
1028.endif
1029
1030.if ${BOOTSTRAPPING} < 900006
1031_lex=		usr.bin/lex
1032_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" && \
1040    (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree))
1041_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1042.endif
1043
1044.if ${MK_RESCUE} != "no" && \
1045    ${BOOTSTRAPPING} < 700026
1046_crunchgen=	usr.sbin/crunch/crunchgen
1047.endif
1048
1049.if ${MK_CLANG} != "no"
1050_clang_tblgen= \
1051	lib/clang/libllvmsupport \
1052	lib/clang/libllvmtablegen \
1053	usr.bin/clang/tblgen \
1054	usr.bin/clang/clang-tblgen
1055.endif
1056
1057.if ${MK_CDDL} != "no" && \
1058    ${BOOTSTRAPPING} < 800038 && \
1059    !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)
1060_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
1061    lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1062.endif
1063
1064.if ${MK_FDT} != "no"
1065_dtc= gnu/usr.bin/dtc
1066.endif
1067
1068#	Please document (add comment) why something is in 'bootstrap-tools'.
1069#	Try to bound the building of the bootstrap-tool to just the
1070#	FreeBSD versions that need the tool built at this stage of the build.
1071bootstrap-tools:
1072.for _tool in \
1073    ${_clang_tblgen} \
1074    ${_dtrace_tools} \
1075    ${_strfile} \
1076    ${_gperf} \
1077    ${_groff} \
1078    ${_ar} \
1079    ${_dtc} \
1080    ${_awk} \
1081    usr.bin/lorder \
1082    usr.bin/makewhatis \
1083    ${_mklocale} \
1084    usr.bin/rpcgen \
1085    ${_sed} \
1086    ${_lex} \
1087    ${_yacc} \
1088    usr.bin/xinstall \
1089    ${_gensnmptree} \
1090    usr.sbin/config \
1091    ${_crunchgen}
1092	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1093		cd ${.CURDIR}/${_tool}; \
1094		${MAKE} DIRPRFX=${_tool}/ obj; \
1095		${MAKE} DIRPRFX=${_tool}/ depend; \
1096		${MAKE} DIRPRFX=${_tool}/ all; \
1097		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1098.endfor
1099
1100#
1101# build-tools: Build special purpose build tools
1102#
1103.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
1104_aicasm= sys/modules/aic7xxx/aicasm
1105.endif
1106
1107.if !defined(NO_SHARE)
1108_share=	share/syscons/scrnmaps
1109.endif
1110
1111.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no"
1112_gcc_tools= gnu/usr.bin/cc/cc_tools
1113.endif
1114
1115.if ${MK_KERBEROS} != "no"
1116_kerberos5_tools= kerberos5/tools
1117.endif
1118
1119.if ${MK_RESCUE} != "no"
1120_rescue= rescue/rescue
1121.endif
1122
1123build-tools:
1124.for _tool in \
1125    bin/csh \
1126    bin/sh \
1127    ${_rescue} \
1128    ${LOCAL_TOOL_DIRS} \
1129    lib/ncurses/ncurses \
1130    lib/ncurses/ncursesw \
1131    ${_share} \
1132    ${_aicasm} \
1133    usr.bin/awk \
1134    lib/libmagic \
1135    usr.bin/mkesdb_static \
1136    usr.bin/mkcsmapper_static
1137	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1138		cd ${.CURDIR}/${_tool}; \
1139		${MAKE} DIRPRFX=${_tool}/ obj; \
1140		${MAKE} DIRPRFX=${_tool}/ build-tools
1141.endfor
1142.for _tool in \
1143    ${_gcc_tools} \
1144    ${_kerberos5_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} ${_kerberos5_lib_libhdb} \
1251		${_kerberos5_lib_libheimntlm} \
1252		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1253		${_kerberos5_lib_libroken} \
1254		lib/libbz2 lib/libcom_err lib/libcrypt \
1255		lib/libexpat \
1256		${_lib_libgssapi} ${_lib_libipx} \
1257		lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1258		lib/ncurses/ncurses lib/ncurses/ncursesw \
1259		lib/libopie lib/libpam ${_lib_libthr} \
1260		lib/libradius lib/libsbuf lib/libtacplus \
1261		${_cddl_lib_libumem} \
1262		lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1263		${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1264		${_secure_lib_libssl}
1265
1266.if ${MK_LIBTHR} != "no"
1267_lib_libthr=	lib/libthr
1268.endif
1269
1270.if ${MK_OFED} != "no"
1271_ofed_lib=	contrib/ofed/usr.lib/
1272.endif
1273
1274_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1275
1276lib/libopie__L lib/libtacplus__L: lib/libmd__L
1277
1278.if ${MK_CDDL} != "no"
1279_cddl_lib_libumem= cddl/lib/libumem
1280_cddl_lib= cddl/lib
1281.endif
1282
1283.if ${MK_CRYPT} != "no"
1284.if ${MK_OPENSSL} != "no"
1285_secure_lib_libcrypto= secure/lib/libcrypto
1286_secure_lib_libssl= secure/lib/libssl
1287lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1288.if ${MK_OPENSSH} != "no"
1289_secure_lib_libssh= secure/lib/libssh
1290secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1291.if ${MK_KERBEROS_SUPPORT} != "no"
1292secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1293    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1294    lib/libmd__L kerberos5/lib/libroken__L
1295.endif
1296.endif
1297.endif
1298_secure_lib=	secure/lib
1299.endif
1300
1301.if ${MK_KERBEROS} != "no"
1302kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1303kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1304    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L
1305kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L
1306kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1307    secure/lib/libcrypto__L kerberos5/lib/libroken__L
1308kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1309    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1310    kerberos5/lib/libroken__L
1311kerberos5/lib/libroken__L: lib/libcrypt__L
1312.endif
1313
1314.if ${MK_GSSAPI} != "no"
1315_lib_libgssapi=	lib/libgssapi
1316.endif
1317
1318.if ${MK_IPX} != "no"
1319_lib_libipx=	lib/libipx
1320.endif
1321
1322.if ${MK_KERBEROS} != "no"
1323_kerberos5_lib=	kerberos5/lib
1324_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1325_kerberos5_lib_libhdb= kerberos5/lib/libhdb
1326_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1327_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1328_kerberos5_lib_libroken= kerberos5/lib/libroken
1329_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1330.endif
1331
1332.if ${MK_NIS} != "no"
1333_lib_libypclnt=	lib/libypclnt
1334.endif
1335
1336.if ${MK_OPENSSL} == "no"
1337lib/libradius__L: lib/libmd__L
1338.endif
1339
1340.for _lib in ${_prereq_libs}
1341${_lib}__PL: .PHONY
1342.if exists(${.CURDIR}/${_lib})
1343	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1344		cd ${.CURDIR}/${_lib}; \
1345		${MAKE} DIRPRFX=${_lib}/ obj; \
1346		${MAKE} DIRPRFX=${_lib}/ depend; \
1347		${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1348		${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1349.endif
1350.endfor
1351
1352.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1353${_lib}__L: .PHONY
1354.if exists(${.CURDIR}/${_lib})
1355	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1356		cd ${.CURDIR}/${_lib}; \
1357		${MAKE} DIRPRFX=${_lib}/ obj; \
1358		${MAKE} DIRPRFX=${_lib}/ depend; \
1359		${MAKE} DIRPRFX=${_lib}/ all; \
1360		${MAKE} DIRPRFX=${_lib}/ install
1361.endif
1362.endfor
1363
1364# libpam is special: we need to build static PAM modules before
1365# static PAM library, and dynamic PAM library before dynamic PAM
1366# modules.
1367lib/libpam__L: .PHONY
1368	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1369		cd ${.CURDIR}/lib/libpam; \
1370		${MAKE} DIRPRFX=lib/libpam/ obj; \
1371		${MAKE} DIRPRFX=lib/libpam/ depend; \
1372		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1373		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1374
1375_prereq_libs: ${_prereq_libs:S/$/__PL/}
1376_startup_libs: ${_startup_libs:S/$/__L/}
1377_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1378_generic_libs: ${_generic_libs:S/$/__L/}
1379
1380.for __target in all clean cleandepend cleandir depend includes obj
1381.for entry in ${SUBDIR}
1382${entry}.${__target}__D: .PHONY
1383	${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1384		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1385		edir=${entry}.${MACHINE_ARCH}; \
1386		cd ${.CURDIR}/$${edir}; \
1387	else \
1388		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1389		edir=${entry}; \
1390		cd ${.CURDIR}/$${edir}; \
1391	fi; \
1392	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1393.endfor
1394par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1395.endfor
1396
1397.include <bsd.subdir.mk>
1398
1399.if make(check-old) || make(check-old-dirs) || \
1400    make(check-old-files) || make(check-old-libs) || \
1401    make(delete-old) || make(delete-old-dirs) || \
1402    make(delete-old-files) || make(delete-old-libs)
1403
1404#
1405# check for / delete old files section
1406#
1407
1408.include "ObsoleteFiles.inc"
1409
1410OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1411else you can not start such an application. Consult UPDATING for more \
1412information regarding how to cope with the removal/revision bump of a \
1413specific library."
1414
1415.if !defined(BATCH_DELETE_OLD_FILES)
1416RM_I=-i
1417.else
1418RM_I=-v
1419.endif
1420
1421delete-old-files:
1422	@echo ">>> Removing old files (only deletes safe to delete libs)"
1423# Ask for every old file if the user really wants to remove it.
1424# It's annoying, but better safe than sorry.
1425# NB: We cannot pass the list of OLD_FILES as a parameter because the
1426# argument list will get too long. Using .for/.endfor make "loops" will make
1427# the Makefile parser segfault.
1428	@exec 3<&0; \
1429	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1430	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1431	while read file; do \
1432		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1433			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1434			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1435		fi; \
1436	done
1437# Remove catpages without corresponding manpages.
1438	@exec 3<&0; \
1439	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1440	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1441	while read catpage; do \
1442		read manpage; \
1443		if [ ! -e "$${manpage}" ]; then \
1444			rm ${RM_I} $${catpage} <&3; \
1445	        fi; \
1446	done
1447	@echo ">>> Old files removed"
1448
1449check-old-files:
1450	@echo ">>> Checking for old files"
1451	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1452	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1453	while read file; do \
1454		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1455		 	echo "${DESTDIR}/$${file}"; \
1456		fi; \
1457	done
1458# Check for catpages without corresponding manpages.
1459	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1460	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1461	while read catpage; do \
1462		read manpage; \
1463		if [ ! -e "$${manpage}" ]; then \
1464			echo $${catpage}; \
1465	        fi; \
1466	done
1467
1468delete-old-libs:
1469	@echo ">>> Removing old libraries"
1470	@echo "${OLD_LIBS_MESSAGE}" | fmt
1471	@exec 3<&0; \
1472	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1473	    -V OLD_LIBS | xargs -n1 | \
1474	while read file; do \
1475		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1476			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1477			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1478		fi; \
1479	done
1480	@echo ">>> Old libraries removed"
1481
1482check-old-libs:
1483	@echo ">>> Checking for old libraries"
1484	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1485	    -V OLD_LIBS | xargs -n1 | \
1486	while read file; do \
1487		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1488			echo "${DESTDIR}/$${file}"; \
1489		fi; \
1490	done
1491
1492delete-old-dirs:
1493	@echo ">>> Removing old directories"
1494	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1495	    -V OLD_DIRS | xargs -n1 | \
1496	while read dir; do \
1497		if [ -d "${DESTDIR}/$${dir}" ]; then \
1498			rmdir -v "${DESTDIR}/$${dir}" || true; \
1499		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1500			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1501		fi; \
1502	done
1503	@echo ">>> Old directories removed"
1504
1505check-old-dirs:
1506	@echo ">>> Checking for old directories"
1507	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1508	    -V OLD_DIRS | xargs -n1 | \
1509	while read dir; do \
1510		if [ -d "${DESTDIR}/$${dir}" ]; then \
1511			echo "${DESTDIR}/$${dir}"; \
1512		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1513			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1514		fi; \
1515	done
1516
1517delete-old: delete-old-files delete-old-dirs
1518	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1519
1520check-old: check-old-files check-old-libs check-old-dirs
1521	@echo "To remove old files and directories run '${MAKE} delete-old'."
1522	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1523
1524.endif
1525
1526#
1527# showconfig - show build configuration.
1528#
1529showconfig:
1530	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
1531
1532.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1533DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1534
1535.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1536.if exists(${KERNCONFDIR}/${KERNCONF})
1537FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1538	${KERNCONFDIR}/${KERNCONF}
1539.endif
1540.endif
1541
1542.endif
1543
1544.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1545DTBOUTPUTPATH= ${.CURDIR}
1546.endif
1547
1548#
1549# Build 'standalone' Device Tree Blob
1550#
1551builddtb:
1552	@if [ "${FDT_DTS_FILE}" = "" ]; then \
1553		echo "ERROR: FDT_DTS_FILE must be specified!"; \
1554		exit 1; \
1555	fi;	\
1556	if [ ! -f ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE} ]; then \
1557		echo "ERROR: Specified DTS file (${FDT_DTS_FILE}) does not \
1558			exist!"; \
1559		exit 1;	\
1560	fi;	\
1561	if [ "${DTBOUTPUTPATH}" = "${.CURDIR}" ]; then	\
1562		echo "WARNING: DTB will be placed in the current working \
1563			directory"; \
1564	fi
1565	@PATH=${TMPPATH} \
1566	dtc -O dtb -o \
1567	    ${DTBOUTPUTPATH}/`echo ${FDT_DTS_FILE} | cut -d. -f1`.dtb -b 0 \
1568	    -p 1024 ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE}
1569
1570###############
1571
1572.if defined(XDEV) && defined(XDEV_ARCH)
1573
1574.if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
1575XDEV_CPUTYPE?=${CPUTYPE}
1576.else
1577XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1578.endif
1579
1580NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
1581	-DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
1582	-DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \
1583	TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
1584	CPUTYPE=${XDEV_CPUTYPE}
1585
1586XDDIR=${XDEV_ARCH}-freebsd
1587XDTP=/usr/${XDDIR}
1588CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR}
1589CDENV= ${CDBENV} \
1590	_SHLIBDIRPREFIX=${XDTP} \
1591	TOOLS_PREFIX=${XDTP}
1592CD2ENV=${CDENV} \
1593	MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
1594
1595CDTMP=	${MAKEOBJDIRPREFIX}/${XDEV}/${.CURDIR}/tmp
1596CDMAKE=${CDENV} ${MAKE} ${NOFUN}
1597CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDTP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1598XDDESTDIR=${DESTDIR}${XDTP}
1599.if !defined(OSREL)
1600OSREL!= uname -r | sed -e 's/[-(].*//'
1601.endif
1602
1603.ORDER: xdev-build xdev-install
1604xdev: xdev-build xdev-install
1605
1606.ORDER: _xb-build-tools _xb-cross-tools
1607xdev-build: _xb-build-tools _xb-cross-tools
1608
1609_xb-build-tools:
1610	${_+_}@cd ${.CURDIR}; \
1611	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1612
1613_xb-cross-tools:
1614.for _tool in \
1615    gnu/usr.bin/binutils \
1616    gnu/usr.bin/cc \
1617    usr.bin/ar
1618	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1619	cd ${.CURDIR}/${_tool}; \
1620	${CDMAKE} DIRPRFX=${_tool}/ obj; \
1621	${CDMAKE} DIRPRFX=${_tool}/ depend; \
1622	${CDMAKE} DIRPRFX=${_tool}/ all
1623.endfor
1624
1625_xi-mtree:
1626	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1627	mkdir -p ${XDDESTDIR}
1628	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1629	    -p ${XDDESTDIR} >/dev/null
1630	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1631	    -p ${XDDESTDIR}/usr >/dev/null
1632	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1633	    -p ${XDDESTDIR}/usr/include >/dev/null
1634
1635.ORDER: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1636xdev-install: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1637
1638_xi-cross-tools:
1639	@echo "_xi-cross-tools"
1640.for _tool in \
1641    gnu/usr.bin/binutils \
1642    gnu/usr.bin/cc \
1643    usr.bin/ar
1644	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
1645	cd ${.CURDIR}/${_tool}; \
1646	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
1647.endfor
1648
1649_xi-includes:
1650	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
1651		DESTDIR=${XDDESTDIR}
1652
1653_xi-libraries:
1654	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
1655		DESTDIR=${XDDESTDIR}
1656
1657_xi-links:
1658	${_+_}cd ${XDDESTDIR}/usr/bin; \
1659		for i in *; do \
1660			ln -sf ../../${XDTP}/usr/bin/$$i \
1661			    ../../../../usr/bin/${XDDIR}-$$i; \
1662			ln -sf ../../${XDTP}/usr/bin/$$i \
1663			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
1664		done
1665.else
1666xdev xdev-buil xdev-install:
1667	@echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
1668.endif
1669