Makefile.inc1 revision 227120
1130803Smarcel#
2130803Smarcel# $FreeBSD: head/Makefile.inc1 227120 2011-11-05 21:16:39Z dim $
3130803Smarcel#
4130803Smarcel# Make command line options:
5130803Smarcel#	-DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6130803Smarcel#	-DNO_CLEAN do not clean at all
7130803Smarcel#	-DNO_SHARE do not go into share subdir
8130803Smarcel#	-DKERNFAST define NO_KERNEL{CONFIG,CLEAN,DEPEND,OBJ}
9130803Smarcel#	-DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
10130803Smarcel#	-DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
11130803Smarcel#	-DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
12130803Smarcel#	-DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
13130803Smarcel#	-DNO_PORTSUPDATE do not update ports in ${MAKE} update
14130803Smarcel#	-DNO_DOCUPDATE do not update doc in ${MAKE} update
15130803Smarcel#	-DNO_WWWUPDATE do not update www in ${MAKE} update
16130803Smarcel#	-DNO_CTF do not run the DTrace CTF conversion tools on built objects
17130803Smarcel#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
18130803Smarcel#	TARGET="machine" to crossbuild world for a different machine type
19130803Smarcel#	TARGET_ARCH= may be required when a TARGET supports multiple endians
20130803Smarcel
21130803Smarcel#
22130803Smarcel# The intended user-driven targets are:
23130803Smarcel# buildworld  - rebuild *everything*, including glue to help do upgrades
24130803Smarcel# installworld- install everything built by "buildworld"
25130803Smarcel# doxygen     - build API documentation of the kernel
26130803Smarcel# update      - convenient way to update your source tree (eg: cvsup/cvs)
27130803Smarcel#
28130803Smarcel# Standard targets (not defined here) are documented in the makefiles in
29130803Smarcel# /usr/share/mk.  These include:
30130803Smarcel#		obj depend all install clean cleandepend cleanobj
31130803Smarcel
32130803Smarcel# You are supposed to define both of these when calling Makefile.inc1
33130803Smarcel# directly.  However, some old scripts don't.  Cope for the moment, but
34130803Smarcel# issue a new warning for a transition period.
35130803Smarcel.if defined(TARGET) && !defined(TARGET_ARCH)
36130803Smarcel.warning "You must pass both TARGET and TARGET_ARCH to Makefile.inc1.  Setting TARGET_ARCH=${TARGET}."
37130803SmarcelTARGET_ARCH=${TARGET}
38130803Smarcel.endif
39130803Smarcel.if !defined(TARGET) || !defined(TARGET_ARCH)
40130803Smarcel.error "Both TARGET and TARGET_ARCH must be defined."
41130803Smarcel.endif
42130803Smarcel
43130803Smarcel.include <bsd.own.mk>
44130803Smarcel.include <bsd.arch.inc.mk>
45130803Smarcel
46130803Smarcel# We must do share/info early so that installation of info `dir'
47130803Smarcel# entries works correctly.  Do it first since it is less likely to
48130803Smarcel# grow dependencies on include and lib than vice versa.
49130803Smarcel#
50130803Smarcel# We must do lib/ and libexec/ before bin/, because if installworld
51130803Smarcel# installs a new /bin/sh, the 'make' command will *immediately*
52130803Smarcel# use that new version.  And the new (dynamically-linked) /bin/sh
53130803Smarcel# will expect to find appropriate libraries in /lib and /libexec.
54130803Smarcel#
55130803SmarcelSUBDIR=	share/info lib libexec
56130803SmarcelSUBDIR+=bin
57130803Smarcel.if ${MK_GAMES} != "no"
58130803SmarcelSUBDIR+=games
59130803Smarcel.endif
60130803Smarcel.if ${MK_CDDL} != "no"
61130803SmarcelSUBDIR+=cddl
62130803Smarcel.else
63130803SmarcelNO_CTF=1
64130803Smarcel.endif
65130803SmarcelSUBDIR+=gnu include
66130803Smarcel.if ${MK_KERBEROS} != "no"
67130803SmarcelSUBDIR+=kerberos5
68130803Smarcel.endif
69130803Smarcel.if ${MK_RESCUE} != "no"
70130803SmarcelSUBDIR+=rescue
71130803Smarcel.endif
72130803SmarcelSUBDIR+=sbin
73130803Smarcel.if ${MK_CRYPT} != "no"
74130803SmarcelSUBDIR+=secure
75130803Smarcel.endif
76130803Smarcel.if !defined(NO_SHARE)
77130803SmarcelSUBDIR+=share
78130803Smarcel.endif
79130803SmarcelSUBDIR+=sys usr.bin usr.sbin
80130803Smarcel.if ${MK_OFED} != "no"
81130803SmarcelSUBDIR+=contrib/ofed
82130803Smarcel.endif
83130803Smarcel#
84130803Smarcel# We must do etc/ last for install/distribute to work.
85130803Smarcel#
86130803SmarcelSUBDIR+=etc
87130803Smarcel
88130803Smarcel# These are last, since it is nice to at least get the base system
89130803Smarcel# rebuilt before you do them.
90130803Smarcel.for _DIR in ${LOCAL_DIRS}
91130803Smarcel.if exists(${.CURDIR}/${_DIR}/Makefile)
92130803SmarcelSUBDIR+= ${_DIR}
93130803Smarcel.endif
94130803Smarcel.endfor
95130803Smarcel
96130803Smarcel.if defined(SUBDIR_OVERRIDE)
97130803SmarcelSUBDIR=		${SUBDIR_OVERRIDE}
98130803Smarcel.endif
99130803Smarcel
100130803Smarcel.if defined(NOCLEAN)
101130803SmarcelNO_CLEAN=	${NOCLEAN}
102130803Smarcel.endif
103130803Smarcel.if defined(NO_CLEANDIR)
104130803SmarcelCLEANDIR=	clean cleandepend
105130803Smarcel.else
106130803SmarcelCLEANDIR=	cleandir
107130803Smarcel.endif
108130803Smarcel
109130803SmarcelCVS?=		cvs
110130803SmarcelCVSFLAGS?=	-A -P -d -I!
111130803SmarcelSVN?=		svn
112130803SmarcelSVNFLAGS?=	-r HEAD
113130803SmarcelSUP?=		/usr/bin/csup
114130803SmarcelSUPFLAGS?=	-g -L 2
115130803Smarcel.if defined(SUPHOST)
116130803SmarcelSUPFLAGS+=	-h ${SUPHOST}
117130803Smarcel.endif
118130803Smarcel
119130803SmarcelMAKEOBJDIRPREFIX?=	/usr/obj
120130803Smarcel.if !defined(OSRELDATE)
121130803Smarcel.if exists(/usr/include/osreldate.h)
122130803SmarcelOSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
123130803Smarcel		/usr/include/osreldate.h
124130803Smarcel.else
125130803SmarcelOSRELDATE=	0
126130803Smarcel.endif
127130803Smarcel.endif
128130803Smarcel
129130803Smarcel.if !defined(VERSION)
130130803SmarcelVERSION!=	uname -srp
131130803SmarcelVERSION+=	${OSRELDATE}
132130803Smarcel.endif
133130803Smarcel
134130803SmarcelKNOWN_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
135130803Smarcel.if ${TARGET} == ${TARGET_ARCH}
136130803Smarcel_t=		${TARGET}
137130803Smarcel.else
138130803Smarcel_t=		${TARGET_ARCH}/${TARGET}
139130803Smarcel.endif
140130803Smarcel.for _t in ${_t}
141130803Smarcel.if empty(KNOWN_ARCHES:M${_t})
142130803Smarcel.error Unknown target ${TARGET_ARCH}:${TARGET}.
143130803Smarcel.endif
144130803Smarcel.endfor
145130803Smarcel
146130803Smarcel.if ${TARGET} == ${MACHINE}
147130803SmarcelTARGET_CPUTYPE?=${CPUTYPE}
148130803Smarcel.else
149130803SmarcelTARGET_CPUTYPE?=
150130803Smarcel.endif
151130803Smarcel
152130803Smarcel.if !empty(TARGET_CPUTYPE)
153130803Smarcel_TARGET_CPUTYPE=${TARGET_CPUTYPE}
154130803Smarcel.else
155130803Smarcel_TARGET_CPUTYPE=dummy
156130803Smarcel.endif
157130803Smarcel_CPUTYPE!=	MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
158130803Smarcel		-f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
159130803Smarcel.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
160130803Smarcel.error CPUTYPE global should be set with ?=.
161130803Smarcel.endif
162130803Smarcel.if make(buildworld)
163130803SmarcelBUILD_ARCH!=	uname -p
164130803Smarcel.if ${MACHINE_ARCH} != ${BUILD_ARCH}
165130803Smarcel.error To cross-build, set TARGET_ARCH.
166130803Smarcel.endif
167130803Smarcel.endif
168130803Smarcel.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
169130803SmarcelOBJTREE=	${MAKEOBJDIRPREFIX}
170130803Smarcel.else
171130803SmarcelOBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
172130803Smarcel.endif
173130803SmarcelWORLDTMP=	${OBJTREE}${.CURDIR}/tmp
174130803Smarcel# /usr/games added for fortune which depend on strfile
175130803SmarcelBPATH=		${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games
176130803SmarcelXPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
177130803SmarcelSTRICTTMPPATH=	${BPATH}:${XPATH}
178130803SmarcelTMPPATH=	${STRICTTMPPATH}:${PATH}
179130803Smarcel
180130803Smarcel#
181130803Smarcel# Avoid running mktemp(1) unless actually needed.
182130803Smarcel# It may not be functional, e.g., due to new ABI
183130803Smarcel# when in the middle of installing over this system.
184130803Smarcel#
185130803Smarcel.if make(distributeworld) || make(installworld)
186130803SmarcelINSTALLTMP!=	/usr/bin/mktemp -d -u -t install
187130803Smarcel.endif
188130803Smarcel
189130803Smarcel#
190130803Smarcel# Building a world goes through the following stages
191130803Smarcel#
192130803Smarcel# 1. legacy stage [BMAKE]
193130803Smarcel#	This stage is responsible for creating compatibility
194130803Smarcel#	shims that are needed by the bootstrap-tools,
195130803Smarcel#	build-tools and cross-tools stages.
196130803Smarcel# 1. bootstrap-tools stage [BMAKE]
197130803Smarcel#	This stage is responsible for creating programs that
198130803Smarcel#	are needed for backward compatibility reasons. They
199130803Smarcel#	are not built as cross-tools.
200130803Smarcel# 2. build-tools stage [TMAKE]
201130803Smarcel#	This stage is responsible for creating the object
202130803Smarcel#	tree and building any tools that are needed during
203130803Smarcel#	the build process.
204130803Smarcel# 3. cross-tools stage [XMAKE]
205130803Smarcel#	This stage is responsible for creating any tools that
206130803Smarcel#	are needed for cross-builds. A cross-compiler is one
207130803Smarcel#	of them.
208130803Smarcel# 4. world stage [WMAKE]
209130803Smarcel#	This stage actually builds the world.
210130803Smarcel# 5. install stage (optional) [IMAKE]
211130803Smarcel#	This stage installs a previously built world.
212130803Smarcel#
213130803Smarcel
214130803SmarcelBOOTSTRAPPING?=	0
215130803Smarcel
216130803Smarcel# Common environment for world related stages
217130803SmarcelCROSSENV=	MAKEOBJDIRPREFIX=${OBJTREE} \
218130803Smarcel		MACHINE_ARCH=${TARGET_ARCH} \
219130803Smarcel		MACHINE=${TARGET} \
220130803Smarcel		CPUTYPE=${TARGET_CPUTYPE}
221130803Smarcel.if ${OSRELDATE} < 700044
222130803SmarcelCROSSENV+=	AR=gnu-ar RANLIB=gnu-ranlib
223130803Smarcel.endif
224130803Smarcel.if ${MK_GROFF} != "no"
225130803SmarcelCROSSENV+=	GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
226130803Smarcel		GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
227130803Smarcel		GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
228130803Smarcel.endif
229130803Smarcel
230130803Smarcel# bootstrap-tools stage
231130803SmarcelBMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
232130803Smarcel		PATH=${BPATH}:${PATH} \
233130803Smarcel		WORLDTMP=${WORLDTMP} \
234130803Smarcel		VERSION="${VERSION}" \
235130803Smarcel		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
236130803SmarcelBMAKE=		MAKEOBJDIRPREFIX=${WORLDTMP} \
237130803Smarcel		${BMAKEENV} ${MAKE} -f Makefile.inc1 \
238130803Smarcel		DESTDIR= \
239130803Smarcel		BOOTSTRAPPING=${OSRELDATE} \
240130803Smarcel		SSP_CFLAGS= \
241130803Smarcel		-DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
242130803Smarcel		-DNO_PIC -DWITHOUT_PROFILE -DNO_SHARED \
243130803Smarcel		-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
244130803Smarcel
245130803Smarcel# build-tools stage
246130803SmarcelTMAKE=		MAKEOBJDIRPREFIX=${OBJTREE} \
247130803Smarcel		${BMAKEENV} ${MAKE} -f Makefile.inc1 \
248130803Smarcel		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
249130803Smarcel		DESTDIR= \
250130803Smarcel		BOOTSTRAPPING=${OSRELDATE} \
251130803Smarcel		SSP_CFLAGS= \
252130803Smarcel		-DNO_LINT \
253130803Smarcel		-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
254130803Smarcel
255130803Smarcel# cross-tools stage
256130803SmarcelXMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
257130803Smarcel		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
258130803Smarcel		-DWITHOUT_GDB
259130803Smarcel
260130803Smarcel# world stage
261130803SmarcelWMAKEENV=	${CROSSENV} \
262130803Smarcel		_SHLIBDIRPREFIX=${WORLDTMP} \
263130803Smarcel		VERSION="${VERSION}" \
264130803Smarcel		INSTALL="sh ${.CURDIR}/tools/install.sh" \
265130803Smarcel		PATH=${TMPPATH}
266130803Smarcel.if ${MK_CDDL} == "no"
267130803SmarcelWMAKEENV+=	NO_CTF=1
268130803Smarcel.endif
269130803SmarcelWMAKE=		${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP}
270130803Smarcel
271130803Smarcel.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
272130803Smarcel# 32 bit world
273130803SmarcelLIB32TMP=	${OBJTREE}${.CURDIR}/lib32
274130803Smarcel
275130803Smarcel.if ${TARGET_ARCH} == "amd64"
276130803Smarcel.if empty(TARGET_CPUTYPE)
277130803SmarcelLIB32CPUFLAGS=	-march=i686 -mmmx -msse -msse2
278130803Smarcel.else
279130803SmarcelLIB32CPUFLAGS=	-march=${TARGET_CPUTYPE}
280130803Smarcel.endif
281130803SmarcelLIB32CPUFLAGS+=	-mfancy-math-387
282130803SmarcelLIB32WMAKEENV=	MACHINE=i386 MACHINE_ARCH=i386 \
283130803Smarcel		MACHINE_CPU="i686 mmx sse sse2" \
284130803Smarcel		LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \
285130803Smarcel		AS="${AS} --32"
286130803Smarcel
287130803Smarcel.elif ${TARGET_ARCH} == "powerpc64"
288130803Smarcel.if empty(TARGET_CPUTYPE)
289130803SmarcelLIB32CPUFLAGS=	-mcpu=powerpc
290130803Smarcel.else
291130803SmarcelLIB32CPUFLAGS=	-mcpu=${TARGET_CPUTYPE}
292130803Smarcel.endif
293130803SmarcelLIB32WMAKEENV=	MACHINE=powerpc MACHINE_ARCH=powerpc \
294130803Smarcel		LD="${LD} -m elf32ppc"
295130803Smarcel.endif
296130803Smarcel
297130803Smarcel
298130803SmarcelLIB32FLAGS=	-m32 ${LIB32CPUFLAGS} -DCOMPAT_32BIT \
299130803Smarcel		-isystem ${LIB32TMP}/usr/include/ \
300130803Smarcel		-L${LIB32TMP}/usr/lib32 \
301130803Smarcel		-B${LIB32TMP}/usr/lib32
302130803Smarcel
303130803Smarcel# Yes, the flags are redundant.
304130803SmarcelLIB32WMAKEENV+=	MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \
305130803Smarcel		_SHLIBDIRPREFIX=${LIB32TMP} \
306130803Smarcel		VERSION="${VERSION}" \
307130803Smarcel		INSTALL="sh ${.CURDIR}/tools/install.sh" \
308130803Smarcel		PATH=${TMPPATH} \
309130803Smarcel		CC="${CC} ${LIB32FLAGS}" \
310130803Smarcel		CXX="${CXX} ${LIB32FLAGS}" \
311130803Smarcel		LIBDIR=/usr/lib32 \
312130803Smarcel		SHLIBDIR=/usr/lib32
313130803Smarcel
314130803SmarcelLIB32WMAKE=	${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \
315130803Smarcel		-DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \
316130803Smarcel		-DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \
317130803Smarcel		DESTDIR=${LIB32TMP}
318130803SmarcelLIB32IMAKE=	${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS
319130803Smarcel.endif
320130803Smarcel
321130803Smarcel# install stage
322130803SmarcelIMAKEENV=	${CROSSENV}
323130803SmarcelIMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1
324130803Smarcel.if empty(.MAKEFLAGS:M-n)
325130803SmarcelIMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
326130803Smarcel		LD_LIBRARY_PATH=${INSTALLTMP} \
327130803Smarcel		PATH_LOCALE=${INSTALLTMP}/locale
328130803SmarcelIMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
329130803Smarcel.else
330130803SmarcelIMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
331130803Smarcel.endif
332130803Smarcel
333130803Smarcel# kernel stage
334130803SmarcelKMAKEENV=	${WMAKEENV}
335130803SmarcelKMAKE=		${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME}
336130803Smarcel
337130803Smarcel#
338130803Smarcel# buildworld
339130803Smarcel#
340130803Smarcel# Attempt to rebuild the entire system, with reasonable chance of
341130803Smarcel# success, regardless of how old your existing system is.
342130803Smarcel#
343130803Smarcel_worldtmp:
344130803Smarcel.if ${.CURDIR:C/[^,]//g} != ""
345130803Smarcel#	The m4 build of sendmail files doesn't like it if ',' is used
346130803Smarcel#	anywhere in the path of it's files.
347130803Smarcel	@echo
348130803Smarcel	@echo "*** Error: path to source tree contains a comma ','"
349130803Smarcel	@echo
350130803Smarcel	false
351130803Smarcel.endif
352	@echo
353	@echo "--------------------------------------------------------------"
354	@echo ">>> Rebuilding the temporary build tree"
355	@echo "--------------------------------------------------------------"
356.if !defined(NO_CLEAN)
357	rm -rf ${WORLDTMP}
358.if defined(LIB32TMP)
359	rm -rf ${LIB32TMP}
360.endif
361.else
362	rm -rf ${WORLDTMP}/legacy/usr/include
363#	XXX - These three can depend on any header file.
364	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
365	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c
366	rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
367.endif
368.for _dir in \
369    lib usr legacy/usr
370	mkdir -p ${WORLDTMP}/${_dir}
371.endfor
372	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
373	    -p ${WORLDTMP}/legacy/usr >/dev/null
374.if ${MK_GROFF} != "no"
375	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
376	    -p ${WORLDTMP}/legacy/usr >/dev/null
377.endif
378	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
379	    -p ${WORLDTMP}/usr >/dev/null
380	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
381	    -p ${WORLDTMP}/usr/include >/dev/null
382	ln -sf ${.CURDIR}/sys ${WORLDTMP}
383.if ${MK_BIND_LIBS} != "no"
384	mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \
385	    -p ${WORLDTMP}/usr/include >/dev/null
386.endif
387_legacy:
388	@echo
389	@echo "--------------------------------------------------------------"
390	@echo ">>> stage 1.1: legacy release compatibility shims"
391	@echo "--------------------------------------------------------------"
392	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
393_bootstrap-tools:
394	@echo
395	@echo "--------------------------------------------------------------"
396	@echo ">>> stage 1.2: bootstrap tools"
397	@echo "--------------------------------------------------------------"
398	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
399_cleanobj:
400.if !defined(NO_CLEAN)
401	@echo
402	@echo "--------------------------------------------------------------"
403	@echo ">>> stage 2.1: cleaning up the object tree"
404	@echo "--------------------------------------------------------------"
405	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
406.if defined(LIB32TMP)
407	${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/}
408.endif
409.endif
410_obj:
411	@echo
412	@echo "--------------------------------------------------------------"
413	@echo ">>> stage 2.2: rebuilding the object tree"
414	@echo "--------------------------------------------------------------"
415	${_+_}cd ${.CURDIR}; ${WMAKE} par-obj
416_build-tools:
417	@echo
418	@echo "--------------------------------------------------------------"
419	@echo ">>> stage 2.3: build tools"
420	@echo "--------------------------------------------------------------"
421	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
422_cross-tools:
423	@echo
424	@echo "--------------------------------------------------------------"
425	@echo ">>> stage 3: cross tools"
426	@echo "--------------------------------------------------------------"
427	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
428_includes:
429	@echo
430	@echo "--------------------------------------------------------------"
431	@echo ">>> stage 4.1: building includes"
432	@echo "--------------------------------------------------------------"
433	${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
434_libraries:
435	@echo
436	@echo "--------------------------------------------------------------"
437	@echo ">>> stage 4.2: building libraries"
438	@echo "--------------------------------------------------------------"
439	${_+_}cd ${.CURDIR}; \
440	    ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
441	    -DWITHOUT_MAN -DWITHOUT_PROFILE libraries
442_depend:
443	@echo
444	@echo "--------------------------------------------------------------"
445	@echo ">>> stage 4.3: make dependencies"
446	@echo "--------------------------------------------------------------"
447	${_+_}cd ${.CURDIR}; ${WMAKE} par-depend
448everything:
449	@echo
450	@echo "--------------------------------------------------------------"
451	@echo ">>> stage 4.4: building everything"
452	@echo "--------------------------------------------------------------"
453	${_+_}cd ${.CURDIR}; ${WMAKE} par-all
454.if defined(LIB32TMP)
455build32:
456	@echo
457	@echo "--------------------------------------------------------------"
458	@echo ">>> stage 5.1: building 32 bit shim libraries"
459	@echo "--------------------------------------------------------------"
460	mkdir -p ${LIB32TMP}/usr/include
461	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
462	    -p ${LIB32TMP}/usr >/dev/null
463	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
464	    -p ${LIB32TMP}/usr/include >/dev/null
465	mkdir -p ${WORLDTMP}
466	ln -sf ${.CURDIR}/sys ${WORLDTMP}
467.if ${MK_KERBEROS} != "no"
468.for _t in obj depend all
469	cd ${.CURDIR}/kerberos5/tools; \
470	    MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
471	    DIRPRFX=kerberos5/tools/ ${_t}
472.endfor
473.endif
474.for _t in obj includes
475	cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t}
476	cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t}
477.if ${MK_CDDL} != "no"
478	cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t}
479.endif
480	cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t}
481.if ${MK_CRYPT} != "no"
482	cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t}
483.endif
484.if ${MK_KERBEROS} != "no"
485	cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t}
486.endif
487.endfor
488.for _dir in usr.bin/lex/lib
489	cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj
490.endfor
491.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic
492	cd ${.CURDIR}/${_dir}; \
493	    MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
494	    DIRPRFX=${_dir}/ build-tools
495.endfor
496	cd ${.CURDIR}; \
497	    ${LIB32WMAKE} -f Makefile.inc1 libraries
498.for _t in obj depend all
499	cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \
500	    DIRPRFX=libexec/rtld-elf/ ${_t}
501	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \
502	    DIRPRFX=usr.bin/ldd ${_t}
503.endfor
504
505distribute32 install32:
506	cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
507.if ${MK_CDDL} != "no"
508	cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
509.endif
510	cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
511.if ${MK_CRYPT} != "no"
512	cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
513.endif
514.if ${MK_KERBEROS} != "no"
515	cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
516.endif
517	cd ${.CURDIR}/libexec/rtld-elf; \
518	    PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
519	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}
520.endif
521
522WMAKE_TGTS=
523.if !defined(SUBDIR_OVERRIDE)
524WMAKE_TGTS+=	_worldtmp _legacy _bootstrap-tools
525.endif
526WMAKE_TGTS+=	_cleanobj _obj _build-tools
527.if !defined(SUBDIR_OVERRIDE)
528WMAKE_TGTS+=	_cross-tools
529.endif
530WMAKE_TGTS+=	_includes _libraries _depend everything
531.if defined(LIB32TMP) && ${MK_LIB32} != "no"
532WMAKE_TGTS+=	build32
533.endif
534
535buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
536.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
537
538buildworld_prologue:
539	@echo "--------------------------------------------------------------"
540	@echo ">>> World build started on `LC_ALL=C date`"
541	@echo "--------------------------------------------------------------"
542
543buildworld_epilogue:
544	@echo
545	@echo "--------------------------------------------------------------"
546	@echo ">>> World build completed on `LC_ALL=C date`"
547	@echo "--------------------------------------------------------------"
548
549#
550# We need to have this as a target because the indirection between Makefile
551# and Makefile.inc1 causes the correct PATH to be used, rather than a
552# modification of the current environment's PATH.  In addition, we need
553# to quote multiword values.
554#
555buildenvvars:
556	@echo ${WMAKEENV:Q}
557
558buildenv:
559	@echo Entering world for ${TARGET_ARCH}:${TARGET}
560	@cd ${.CURDIR} && env ${WMAKEENV} sh || true
561
562TOOLCHAIN_TGTS=	${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
563toolchain: ${TOOLCHAIN_TGTS}
564kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
565
566#
567# installcheck
568#
569# Checks to be sure system is ready for installworld/installkernel.
570#
571installcheck:
572
573#
574# Require DESTDIR to be set if installing for a different architecture.
575#
576.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE}
577.if !make(distributeworld)
578installcheck: installcheck_DESTDIR
579installcheck_DESTDIR:
580.if !defined(DESTDIR) || empty(DESTDIR)
581	@echo "ERROR: Please set DESTDIR!"; \
582	false
583.endif
584.endif
585.endif
586
587#
588# Check for missing UIDs/GIDs.
589#
590CHECK_UIDS=
591CHECK_GIDS=	audit
592.if ${MK_SENDMAIL} != "no"
593CHECK_UIDS+=	smmsp
594CHECK_GIDS+=	smmsp
595.endif
596.if ${MK_PF} != "no"
597CHECK_UIDS+=	proxy
598CHECK_GIDS+=	proxy authpf
599.endif
600installcheck: installcheck_UGID
601installcheck_UGID:
602.for uid in ${CHECK_UIDS}
603	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
604		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
605		false; \
606	fi
607.endfor
608.for gid in ${CHECK_GIDS}
609	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
610		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
611		false; \
612	fi
613.endfor
614
615#
616# Required install tools to be saved in a scratch dir for safety.
617#
618.if ${MK_INFO} != "no"
619_install-info=	install-info
620.endif
621.if ${MK_ZONEINFO} != "no"
622_zoneinfo=	zic tzsetup
623.endif
624
625ITOOLS=	[ awk cap_mkdb cat chflags chmod chown \
626	date echo egrep find grep ${_install-info} \
627	ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
628	test true uname wc ${_zoneinfo}
629
630#
631# distributeworld
632#
633# Distributes everything compiled by a `buildworld'.
634#
635# installworld
636#
637# Installs everything compiled by a 'buildworld'.
638#
639
640# Non-base distributions produced by the base system
641EXTRA_DISTRIBUTIONS=	doc games
642.if defined(LIB32TMP) && ${MK_LIB32} != "no"
643EXTRA_DISTRIBUTIONS+=	lib32
644.endif
645
646distributeworld installworld: installcheck
647	mkdir -p ${INSTALLTMP}
648	progs=$$(for prog in ${ITOOLS}; do \
649		if progpath=`which $$prog`; then \
650			echo $$progpath; \
651		else \
652			echo "Required tool $$prog not found in PATH." >&2; \
653			exit 1; \
654		fi; \
655	    done); \
656	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
657	    while read line; do \
658		set -- $$line; \
659		if [ "$$2 $$3" != "not found" ]; then \
660			echo $$2; \
661		else \
662			echo "Required library $$1 not found." >&2; \
663			exit 1; \
664		fi; \
665	    done); \
666	cp $$libs $$progs ${INSTALLTMP}
667	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
668.if make(distributeworld)
669.for dist in ${EXTRA_DISTRIBUTIONS}
670	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
671	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
672	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
673	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
674	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
675	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
676	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
677.endfor
678	-mkdir ${DESTDIR}/${DISTDIR}/base
679	${_+_}cd ${.CURDIR}; ${IMAKE} distrib-dirs \
680	    DESTDIR=${DESTDIR}/${DISTDIR}/base
681.endif
682	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
683	    ${IMAKEENV} rm -rf ${INSTALLTMP}
684.if make(distributeworld)
685.for dist in ${EXTRA_DISTRIBUTIONS}
686	find ${DESTDIR}/${DISTDIR}/${dist} -empty -delete
687.endfor
688.endif
689
690packageworld:
691.for dist in base ${EXTRA_DISTRIBUTIONS}
692	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
693	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz .
694.endfor
695
696#
697# reinstall
698#
699# If you have a build server, you can NFS mount the source and obj directories
700# and do a 'make reinstall' on the *client* to install new binaries from the
701# most recent server build.
702#
703reinstall:
704	@echo "--------------------------------------------------------------"
705	@echo ">>> Making hierarchy"
706	@echo "--------------------------------------------------------------"
707	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
708	@echo
709	@echo "--------------------------------------------------------------"
710	@echo ">>> Installing everything"
711	@echo "--------------------------------------------------------------"
712	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
713.if defined(LIB32TMP) && ${MK_LIB32} != "no"
714	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
715.endif
716
717redistribute:
718	@echo "--------------------------------------------------------------"
719	@echo ">>> Distributing everything"
720	@echo "--------------------------------------------------------------"
721	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
722.if defined(LIB32TMP) && ${MK_LIB32} != "no"
723	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
724	    DISTRIBUTION=lib32
725.endif
726
727distrib-dirs distribution:
728	cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} ${.TARGET}
729
730#
731# buildkernel and installkernel
732#
733# Which kernels to build and/or install is specified by setting
734# KERNCONF. If not defined a GENERIC kernel is built/installed.
735# Only the existing (depending TARGET) config files are used
736# for building kernels and only the first of these is designated
737# as the one being installed.
738#
739# Note that we have to use TARGET instead of TARGET_ARCH when
740# we're in kernel-land. Since only TARGET_ARCH is (expected) to
741# be set to cross-build, we have to make sure TARGET is set
742# properly.
743
744.if defined(KERNFAST)
745NO_KERNELCLEAN=	t
746NO_KERNELCONFIG=	t
747NO_KERNELDEPEND=	t
748NO_KERNELOBJ=		t
749# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
750.if !defined(KERNCONF) && ${KERNFAST} != "1"
751KERNCONF=${KERNFAST}
752.endif
753.endif
754.if !defined(KERNCONF) && defined(KERNEL)
755KERNCONF=	${KERNEL}
756KERNWARN=
757.else
758.if ${TARGET_ARCH} == "powerpc64"
759KERNCONF?=	GENERIC64
760.else
761KERNCONF?=	GENERIC
762.endif
763.endif
764INSTKERNNAME?=	kernel
765
766KERNSRCDIR?=	${.CURDIR}/sys
767KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
768KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
769KERNCONFDIR?=	${KRNLCONFDIR}
770
771BUILDKERNELS=
772INSTALLKERNEL=
773.for _kernel in ${KERNCONF}
774.if exists(${KERNCONFDIR}/${_kernel})
775BUILDKERNELS+=	${_kernel}
776.if empty(INSTALLKERNEL)
777INSTALLKERNEL= ${_kernel}
778.endif
779.endif
780.endfor
781
782#
783# buildkernel
784#
785# Builds all kernels defined by BUILDKERNELS.
786#
787buildkernel:
788.if empty(BUILDKERNELS)
789	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
790	false
791.endif
792.if defined(KERNWARN)
793	@echo "--------------------------------------------------------------"
794	@echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
795	@echo "--------------------------------------------------------------"
796	@sleep 3
797.endif
798	@echo
799.for _kernel in ${BUILDKERNELS}
800	@echo "--------------------------------------------------------------"
801	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
802	@echo "--------------------------------------------------------------"
803	@echo "===> ${_kernel}"
804	mkdir -p ${KRNLOBJDIR}
805.if !defined(NO_KERNELCONFIG)
806	@echo
807	@echo "--------------------------------------------------------------"
808	@echo ">>> stage 1: configuring the kernel"
809	@echo "--------------------------------------------------------------"
810	cd ${KRNLCONFDIR}; \
811		PATH=${TMPPATH} \
812		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
813			${KERNCONFDIR}/${_kernel}
814.endif
815.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
816	@echo
817	@echo "--------------------------------------------------------------"
818	@echo ">>> stage 2.1: cleaning up the object tree"
819	@echo "--------------------------------------------------------------"
820	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
821.endif
822.if !defined(NO_KERNELOBJ)
823	@echo
824	@echo "--------------------------------------------------------------"
825	@echo ">>> stage 2.2: rebuilding the object tree"
826	@echo "--------------------------------------------------------------"
827	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
828.endif
829	@echo
830	@echo "--------------------------------------------------------------"
831	@echo ">>> stage 2.3: build tools"
832	@echo "--------------------------------------------------------------"
833	cd ${KRNLOBJDIR}/${_kernel}; \
834	    MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
835	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \
836	    -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
837# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
838.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
839.for target in obj depend all
840	cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
841	    MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
842	    ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target}
843.endfor
844.endif
845.if !defined(NO_KERNELDEPEND)
846	@echo
847	@echo "--------------------------------------------------------------"
848	@echo ">>> stage 3.1: making dependencies"
849	@echo "--------------------------------------------------------------"
850	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
851.endif
852	@echo
853	@echo "--------------------------------------------------------------"
854	@echo ">>> stage 3.2: building everything"
855	@echo "--------------------------------------------------------------"
856	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
857	@echo "--------------------------------------------------------------"
858	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
859	@echo "--------------------------------------------------------------"
860.endfor
861
862#
863# installkernel, etc.
864#
865# Install the kernel defined by INSTALLKERNEL
866#
867installkernel installkernel.debug \
868reinstallkernel reinstallkernel.debug: installcheck
869.if empty(INSTALLKERNEL)
870	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
871	false
872.endif
873	@echo "--------------------------------------------------------------"
874	@echo ">>> Installing kernel ${INSTALLKERNEL}"
875	@echo "--------------------------------------------------------------"
876	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
877	    ${CROSSENV} PATH=${TMPPATH} \
878	    ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
879
880distributekernel distributekernel.debug:
881.if empty(INSTALLKERNEL)
882	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
883	false
884.endif
885	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
886	    ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
887	    DESTDIR=${DESTDIR}/${DISTDIR}/kernel \
888	    ${.TARGET:S/distributekernel/install/}
889
890packagekernel:
891	${_+_}cd ${DESTDIR}/${DISTDIR}/kernel; \
892	    tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz .
893
894#
895# doxygen
896#
897# Build the API documentation with doxygen
898#
899doxygen:
900	@if [ ! -x `/usr/bin/which doxygen` ]; then \
901		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
902		exit 1; \
903	fi
904	cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
905
906#
907# update
908#
909# Update the source tree(s), by running cvsup/cvs/svn to update to the
910# latest copy.
911#
912update:
913.if defined(SUP_UPDATE)
914	@echo "--------------------------------------------------------------"
915	@echo ">>> Running ${SUP}"
916	@echo "--------------------------------------------------------------"
917.if defined(SUPFILE)
918	@${SUP} ${SUPFLAGS} ${SUPFILE}
919.endif
920.if defined(SUPFILE1)
921	@${SUP} ${SUPFLAGS} ${SUPFILE1}
922.endif
923.if defined(SUPFILE2)
924	@${SUP} ${SUPFLAGS} ${SUPFILE2}
925.endif
926.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
927	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
928.endif
929.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
930	@${SUP} ${SUPFLAGS} ${DOCSUPFILE}
931.endif
932.if defined(WWWSUPFILE) && !defined(NO_WWWUPDATE)
933	@${SUP} ${SUPFLAGS} ${WWWSUPFILE}
934.endif
935.endif
936.if defined(CVS_UPDATE)
937	@cd ${.CURDIR} ; \
938	if [ -d CVS ] ; then \
939		echo "--------------------------------------------------------------" ; \
940		echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} ; \
941		echo "--------------------------------------------------------------" ; \
942		echo ${CVS} -R -q update ${CVSFLAGS} ; \
943		${CVS} -R -q update ${CVSFLAGS} ; \
944	fi
945.endif
946.if defined(SVN_UPDATE)
947	@cd ${.CURDIR} ; \
948	if [ -d .svn ] ; then \
949		echo "--------------------------------------------------------------" ; \
950		echo ">>> Updating ${.CURDIR} using Subversion" ; \
951		echo "--------------------------------------------------------------" ; \
952		echo ${SVN} update ${SVNFLAGS} ; \
953		${SVN} update ${SVNFLAGS} ; \
954	fi
955.endif
956
957#
958# ------------------------------------------------------------------------
959#
960# From here onwards are utility targets used by the 'make world' and
961# related targets.  If your 'world' breaks, you may like to try to fix
962# the problem and manually run the following targets to attempt to
963# complete the build.  Beware, this is *not* guaranteed to work, you
964# need to have a pretty good grip on the current state of the system
965# to attempt to manually finish it.  If in doubt, 'make world' again.
966#
967
968#
969# legacy: Build compatibility shims for the next three targets
970#
971legacy:
972.if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0
973	@echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \
974	false
975.endif
976.for _tool in tools/build
977	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
978	    cd ${.CURDIR}/${_tool}; \
979	    ${MAKE} DIRPRFX=${_tool}/ obj; \
980	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
981	    ${MAKE} DIRPRFX=${_tool}/ depend; \
982	    ${MAKE} DIRPRFX=${_tool}/ all; \
983	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
984.endfor
985
986#
987# bootstrap-tools: Build tools needed for compatibility
988#
989.if ${MK_GAMES} != "no"
990_strfile=	games/fortune/strfile
991.endif
992
993.if ${MK_CXX} != "no"
994_gperf=		gnu/usr.bin/gperf
995.endif
996
997.if ${MK_GROFF} != "no"
998_groff=		gnu/usr.bin/groff
999.endif
1000
1001.if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022
1002_ar=		usr.bin/ar
1003.endif
1004
1005.if ${BOOTSTRAPPING} < 800013
1006_mklocale=	usr.bin/mklocale
1007.endif
1008
1009.if ${BOOTSTRAPPING} < 900002
1010_sed=		usr.bin/sed
1011.endif
1012
1013.if ${BOOTSTRAPPING} < 900006
1014_lex=		usr.bin/lex
1015_yacc=		usr.bin/yacc
1016.endif
1017
1018.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1019_awk=		usr.bin/awk
1020.endif
1021
1022.if ${MK_BSNMP} != "no" && \
1023    (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree))
1024_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1025.endif
1026
1027.if ${MK_RESCUE} != "no" && \
1028    ${BOOTSTRAPPING} < 700026
1029_crunchgen=	usr.sbin/crunch/crunchgen
1030.endif
1031
1032.if ${MK_CLANG} != "no"
1033_clang_tblgen= \
1034	lib/clang/libllvmsupport \
1035	lib/clang/libllvmtablegen \
1036	usr.bin/clang/tblgen \
1037	usr.bin/clang/clang-tblgen
1038.endif
1039
1040.if ${MK_CDDL} != "no" && \
1041    ${BOOTSTRAPPING} < 800038 && \
1042    !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)
1043_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
1044    lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1045.endif
1046
1047.if ${MK_FDT} != "no"
1048_dtc= gnu/usr.bin/dtc
1049.endif
1050
1051#	Please document (add comment) why something is in 'bootstrap-tools'.
1052#	Try to bound the building of the bootstrap-tool to just the
1053#	FreeBSD versions that need the tool built at this stage of the build.
1054bootstrap-tools:
1055.for _tool in \
1056    ${_clang_tblgen} \
1057    ${_dtrace_tools} \
1058    ${_strfile} \
1059    ${_gperf} \
1060    ${_groff} \
1061    ${_ar} \
1062    ${_dtc} \
1063    ${_awk} \
1064    usr.bin/lorder \
1065    usr.bin/makewhatis \
1066    ${_mklocale} \
1067    usr.bin/rpcgen \
1068    ${_sed} \
1069    ${_lex} \
1070    ${_yacc} \
1071    usr.bin/xinstall \
1072    ${_gensnmptree} \
1073    usr.sbin/config \
1074    ${_crunchgen}
1075	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1076		cd ${.CURDIR}/${_tool}; \
1077		${MAKE} DIRPRFX=${_tool}/ obj; \
1078		${MAKE} DIRPRFX=${_tool}/ depend; \
1079		${MAKE} DIRPRFX=${_tool}/ all; \
1080		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1081.endfor
1082
1083#
1084# build-tools: Build special purpose build tools
1085#
1086.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
1087_aicasm= sys/modules/aic7xxx/aicasm
1088.endif
1089
1090.if !defined(NO_SHARE)
1091_share=	share/syscons/scrnmaps
1092.endif
1093
1094.if ${MK_KERBEROS} != "no"
1095_kerberos5_tools= kerberos5/tools
1096.endif
1097
1098.if ${MK_RESCUE} != "no"
1099_rescue= rescue/rescue
1100.endif
1101
1102build-tools:
1103.for _tool in \
1104    bin/csh \
1105    bin/sh \
1106    ${_rescue} \
1107    lib/ncurses/ncurses \
1108    lib/ncurses/ncursesw \
1109    ${_share} \
1110    ${_aicasm} \
1111    usr.bin/awk \
1112    lib/libmagic \
1113    usr.bin/mkesdb_static \
1114    usr.bin/mkcsmapper_static
1115	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1116		cd ${.CURDIR}/${_tool}; \
1117		${MAKE} DIRPRFX=${_tool}/ obj; \
1118		${MAKE} DIRPRFX=${_tool}/ build-tools
1119.endfor
1120.for _tool in \
1121    gnu/usr.bin/cc/cc_tools \
1122    ${_kerberos5_tools}
1123	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1124		cd ${.CURDIR}/${_tool}; \
1125		${MAKE} DIRPRFX=${_tool}/ obj; \
1126		${MAKE} DIRPRFX=${_tool}/ depend; \
1127		${MAKE} DIRPRFX=${_tool}/ all
1128.endfor
1129
1130#
1131# cross-tools: Build cross-building tools
1132#
1133.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1134.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1135_btxld=		usr.sbin/btxld
1136.endif
1137.endif
1138.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1139.if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1140_crunchide=	usr.sbin/crunch/crunchide
1141.endif
1142.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1143_kgzip=		usr.sbin/kgzip
1144.endif
1145.endif
1146
1147.if ${MK_BINUTILS} != "no"
1148_binutils=	gnu/usr.bin/binutils
1149.endif
1150
1151.if ${MK_CLANG} != "no"
1152.if ${CC:T:Mclang} == "clang"
1153_clang=		usr.bin/clang
1154_clang_libs=	lib/clang
1155.endif
1156.endif
1157
1158.if ${MK_GCC} != "no"
1159_cc=		gnu/usr.bin/cc
1160.endif
1161
1162cross-tools:
1163.for _tool in \
1164    ${_clang_libs} \
1165    ${_clang} \
1166    ${_binutils} \
1167    ${_cc} \
1168    usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1169    ${_btxld} \
1170    ${_crunchide} \
1171    ${_kgzip}
1172	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1173		cd ${.CURDIR}/${_tool}; \
1174		${MAKE} DIRPRFX=${_tool}/ obj; \
1175		${MAKE} DIRPRFX=${_tool}/ depend; \
1176		${MAKE} DIRPRFX=${_tool}/ all; \
1177		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1178.endfor
1179
1180#
1181# hierarchy - ensure that all the needed directories are present
1182#
1183hierarchy:
1184	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
1185
1186#
1187# libraries - build all libraries, and install them under ${DESTDIR}.
1188#
1189# The list of libraries with dependents (${_prebuild_libs}) and their
1190# interdependencies (__L) are built automatically by the
1191# ${.CURDIR}/tools/make_libdeps.sh script.
1192#
1193libraries:
1194	cd ${.CURDIR}; \
1195	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
1196	    ${MAKE} -f Makefile.inc1 _startup_libs; \
1197	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1198	    ${MAKE} -f Makefile.inc1 _generic_libs;
1199
1200#
1201# static libgcc.a prerequisite for shared libc
1202#
1203_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1204
1205# These dependencies are not automatically generated:
1206#
1207# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1208# all shared libraries for ELF.
1209#
1210_startup_libs=	gnu/lib/csu
1211.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1212_startup_libs+=	lib/csu/${MACHINE_ARCH}-elf
1213.elif exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
1214_startup_libs+=	lib/csu/${MACHINE_ARCH}
1215.else
1216_startup_libs+=	lib/csu/${MACHINE_CPUARCH}
1217.endif
1218_startup_libs+=	gnu/lib/libgcc
1219_startup_libs+=	lib/libcompiler_rt
1220_startup_libs+=	lib/libc
1221
1222gnu/lib/libgcc__L: lib/libc__L
1223
1224_prebuild_libs=	${_kerberos5_lib_libasn1} ${_kerberos5_lib_libhdb} \
1225		${_kerberos5_lib_libheimntlm} \
1226		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1227		${_kerberos5_lib_libroken} \
1228		lib/libbz2 lib/libcom_err lib/libcrypt \
1229		lib/libexpat \
1230		${_lib_libgssapi} ${_lib_libipx} \
1231		lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1232		lib/ncurses/ncurses lib/ncurses/ncursesw \
1233		lib/libopie lib/libpam ${_lib_libthr} \
1234		lib/libradius lib/libsbuf lib/libtacplus \
1235		${_cddl_lib_libumem} \
1236		lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1237		${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1238		${_secure_lib_libssl}
1239
1240.if ${MK_LIBTHR} != "no"
1241_lib_libthr=	lib/libthr
1242.endif
1243
1244.if ${MK_OFED} != "no"
1245_ofed_lib=	contrib/ofed/usr.lib/
1246.endif
1247
1248_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1249
1250lib/libopie__L lib/libtacplus__L: lib/libmd__L
1251
1252.if ${MK_CDDL} != "no"
1253_cddl_lib_libumem= cddl/lib/libumem
1254_cddl_lib= cddl/lib
1255.endif
1256
1257.if ${MK_CRYPT} != "no"
1258.if ${MK_OPENSSL} != "no"
1259_secure_lib_libcrypto= secure/lib/libcrypto
1260_secure_lib_libssl= secure/lib/libssl
1261lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1262.if ${MK_OPENSSH} != "no"
1263_secure_lib_libssh= secure/lib/libssh
1264secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1265.if ${MK_KERBEROS_SUPPORT} != "no"
1266secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1267    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1268    lib/libmd__L kerberos5/lib/libroken__L
1269.endif
1270.endif
1271.endif
1272_secure_lib=	secure/lib
1273.endif
1274
1275.if ${MK_KERBEROS} != "no"
1276kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1277kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1278    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L
1279kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L
1280kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1281    secure/lib/libcrypto__L kerberos5/lib/libroken__L
1282kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1283    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1284    kerberos5/lib/libroken__L
1285kerberos5/lib/libroken__L: lib/libcrypt__L
1286.endif
1287
1288.if ${MK_GSSAPI} != "no"
1289_lib_libgssapi=	lib/libgssapi
1290.endif
1291
1292.if ${MK_IPX} != "no"
1293_lib_libipx=	lib/libipx
1294.endif
1295
1296.if ${MK_KERBEROS} != "no"
1297_kerberos5_lib=	kerberos5/lib
1298_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1299_kerberos5_lib_libhdb= kerberos5/lib/libhdb
1300_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1301_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1302_kerberos5_lib_libroken= kerberos5/lib/libroken
1303_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1304.endif
1305
1306.if ${MK_NIS} != "no"
1307_lib_libypclnt=	lib/libypclnt
1308.endif
1309
1310.if ${MK_OPENSSL} == "no"
1311lib/libradius__L: lib/libmd__L
1312.endif
1313
1314.for _lib in ${_prereq_libs}
1315${_lib}__PL: .PHONY
1316.if exists(${.CURDIR}/${_lib})
1317	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1318		cd ${.CURDIR}/${_lib}; \
1319		${MAKE} DIRPRFX=${_lib}/ obj; \
1320		${MAKE} DIRPRFX=${_lib}/ depend; \
1321		${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1322		${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1323.endif
1324.endfor
1325
1326.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1327${_lib}__L: .PHONY
1328.if exists(${.CURDIR}/${_lib})
1329	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1330		cd ${.CURDIR}/${_lib}; \
1331		${MAKE} DIRPRFX=${_lib}/ obj; \
1332		${MAKE} DIRPRFX=${_lib}/ depend; \
1333		${MAKE} DIRPRFX=${_lib}/ all; \
1334		${MAKE} DIRPRFX=${_lib}/ install
1335.endif
1336.endfor
1337
1338# libpam is special: we need to build static PAM modules before
1339# static PAM library, and dynamic PAM library before dynamic PAM
1340# modules.
1341lib/libpam__L: .PHONY
1342	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1343		cd ${.CURDIR}/lib/libpam; \
1344		${MAKE} DIRPRFX=lib/libpam/ obj; \
1345		${MAKE} DIRPRFX=lib/libpam/ depend; \
1346		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1347		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1348
1349_prereq_libs: ${_prereq_libs:S/$/__PL/}
1350_startup_libs: ${_startup_libs:S/$/__L/}
1351_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1352_generic_libs: ${_generic_libs:S/$/__L/}
1353
1354.for __target in all clean cleandepend cleandir depend includes obj
1355.for entry in ${SUBDIR}
1356${entry}.${__target}__D: .PHONY
1357	${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1358		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1359		edir=${entry}.${MACHINE_ARCH}; \
1360		cd ${.CURDIR}/$${edir}; \
1361	else \
1362		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1363		edir=${entry}; \
1364		cd ${.CURDIR}/$${edir}; \
1365	fi; \
1366	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1367.endfor
1368par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1369.endfor
1370
1371.include <bsd.subdir.mk>
1372
1373.if make(check-old) || make(check-old-dirs) || \
1374    make(check-old-files) || make(check-old-libs) || \
1375    make(delete-old) || make(delete-old-dirs) || \
1376    make(delete-old-files) || make(delete-old-libs)
1377
1378#
1379# check for / delete old files section
1380#
1381
1382.include "ObsoleteFiles.inc"
1383
1384OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1385else you can not start such an application. Consult UPDATING for more \
1386information regarding how to cope with the removal/revision bump of a \
1387specific library."
1388
1389.if !defined(BATCH_DELETE_OLD_FILES)
1390RM_I=-i
1391.else
1392RM_I=-v
1393.endif
1394
1395delete-old-files:
1396	@echo ">>> Removing old files (only deletes safe to delete libs)"
1397# Ask for every old file if the user really wants to remove it.
1398# It's annoying, but better safe than sorry.
1399# NB: We cannot pass the list of OLD_FILES as a parameter because the
1400# argument list will get too long. Using .for/.endfor make "loops" will make
1401# the Makefile parser segfault.
1402	@exec 3<&0; \
1403	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1404	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1405	while read file; do \
1406		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1407			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1408			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1409		fi; \
1410	done
1411# Remove catpages without corresponding manpages.
1412	@exec 3<&0; \
1413	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1414	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1415	while read catpage; do \
1416		read manpage; \
1417		if [ ! -e "$${manpage}" ]; then \
1418			rm ${RM_I} $${catpage} <&3; \
1419	        fi; \
1420	done
1421	@echo ">>> Old files removed"
1422
1423check-old-files:
1424	@echo ">>> Checking for old files"
1425	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1426	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1427	while read file; do \
1428		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1429		 	echo "${DESTDIR}/$${file}"; \
1430		fi; \
1431	done
1432# Check for catpages without corresponding manpages.
1433	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1434	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1435	while read catpage; do \
1436		read manpage; \
1437		if [ ! -e "$${manpage}" ]; then \
1438			echo $${catpage}; \
1439	        fi; \
1440	done
1441
1442delete-old-libs:
1443	@echo ">>> Removing old libraries"
1444	@echo "${OLD_LIBS_MESSAGE}" | fmt
1445	@exec 3<&0; \
1446	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1447	    -V OLD_LIBS | 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	@echo ">>> Old libraries removed"
1455
1456check-old-libs:
1457	@echo ">>> Checking for old libraries"
1458	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1459	    -V OLD_LIBS | xargs -n1 | \
1460	while read file; do \
1461		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1462			echo "${DESTDIR}/$${file}"; \
1463		fi; \
1464	done
1465
1466delete-old-dirs:
1467	@echo ">>> Removing old directories"
1468	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1469	    -V OLD_DIRS | xargs -n1 | \
1470	while read dir; do \
1471		if [ -d "${DESTDIR}/$${dir}" ]; then \
1472			rmdir -v "${DESTDIR}/$${dir}" || true; \
1473		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1474			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1475		fi; \
1476	done
1477	@echo ">>> Old directories removed"
1478
1479check-old-dirs:
1480	@echo ">>> Checking for old directories"
1481	@${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1482	    -V OLD_DIRS | xargs -n1 | \
1483	while read dir; do \
1484		if [ -d "${DESTDIR}/$${dir}" ]; then \
1485			echo "${DESTDIR}/$${dir}"; \
1486		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1487			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1488		fi; \
1489	done
1490
1491delete-old: delete-old-files delete-old-dirs
1492	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1493
1494check-old: check-old-files check-old-libs check-old-dirs
1495	@echo "To remove old files and directories run '${MAKE} delete-old'."
1496	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1497
1498.endif
1499
1500#
1501# showconfig - show build configuration.
1502#
1503showconfig:
1504	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
1505
1506.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1507DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1508
1509.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1510.if exists(${KERNCONFDIR}/${KERNCONF})
1511FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1512	${KERNCONFDIR}/${KERNCONF}
1513.endif
1514.endif
1515
1516.endif
1517
1518.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1519DTBOUTPUTPATH= ${.CURDIR}
1520.endif
1521
1522#
1523# Build 'standalone' Device Tree Blob
1524#
1525builddtb:
1526	@if [ "${FDT_DTS_FILE}" = "" ]; then \
1527		echo "ERROR: FDT_DTS_FILE must be specified!"; \
1528		exit 1; \
1529	fi;	\
1530	if [ ! -f ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE} ]; then \
1531		echo "ERROR: Specified DTS file (${FDT_DTS_FILE}) does not \
1532			exist!"; \
1533		exit 1;	\
1534	fi;	\
1535	if [ "${DTBOUTPUTPATH}" = "${.CURDIR}" ]; then	\
1536		echo "WARNING: DTB will be placed in the current working \
1537			directory"; \
1538	fi
1539	@PATH=${TMPPATH} \
1540	dtc -O dtb -o \
1541	    ${DTBOUTPUTPATH}/`echo ${FDT_DTS_FILE} | cut -d. -f1`.dtb -b 0 \
1542	    -p 1024 ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE}
1543
1544###############
1545
1546.if defined(XDEV) && defined(XDEV_ARCH)
1547
1548.if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
1549XDEV_CPUTYPE?=${CPUTYPE}
1550.else
1551XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1552.endif
1553
1554NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
1555	-DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE \
1556	-DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \
1557	TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
1558	CPUTYPE=${XDEV_CPUTYPE}
1559
1560XDDIR=${XDEV_ARCH}-freebsd
1561XDTP=/usr/${XDDIR}
1562CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR}
1563CDENV= ${CDBENV} \
1564	_SHLIBDIRPREFIX=${XDTP} \
1565	TOOLS_PREFIX=${XDTP}
1566CD2ENV=${CDENV} \
1567	MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
1568
1569CDTMP=	${MAKEOBJDIRPREFIX}/${XDEV}/${.CURDIR}/tmp
1570CDMAKE=${CDENV} ${MAKE} ${NOFUN}
1571CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDTP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1572XDDESTDIR=${DESTDIR}${XDTP}
1573.if !defined(OSREL)
1574OSREL!= uname -r | sed -e 's/[-(].*//'
1575.endif
1576
1577.ORDER: xdev-build xdev-install
1578xdev: xdev-build xdev-install
1579
1580.ORDER: _xb-build-tools _xb-cross-tools
1581xdev-build: _xb-build-tools _xb-cross-tools
1582
1583_xb-build-tools:
1584	${_+_}@cd ${.CURDIR}; \
1585	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1586
1587_xb-cross-tools:
1588.for _tool in \
1589    gnu/usr.bin/binutils \
1590    gnu/usr.bin/cc \
1591    usr.bin/ar
1592	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1593	cd ${.CURDIR}/${_tool}; \
1594	${CDMAKE} DIRPRFX=${_tool}/ obj; \
1595	${CDMAKE} DIRPRFX=${_tool}/ depend; \
1596	${CDMAKE} DIRPRFX=${_tool}/ all
1597.endfor
1598
1599_xi-mtree:
1600	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1601	mkdir -p ${XDDESTDIR}
1602	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1603	    -p ${XDDESTDIR} >/dev/null
1604	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1605	    -p ${XDDESTDIR}/usr >/dev/null
1606	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1607	    -p ${XDDESTDIR}/usr/include >/dev/null
1608
1609.ORDER: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1610xdev-install: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1611
1612_xi-cross-tools:
1613	@echo "_xi-cross-tools"
1614.for _tool in \
1615    gnu/usr.bin/binutils \
1616    gnu/usr.bin/cc \
1617    usr.bin/ar
1618	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
1619	cd ${.CURDIR}/${_tool}; \
1620	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
1621.endfor
1622
1623_xi-includes:
1624	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
1625		DESTDIR=${XDDESTDIR}
1626
1627_xi-libraries:
1628	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
1629		DESTDIR=${XDDESTDIR}
1630
1631_xi-links:
1632	${_+_}cd ${XDDESTDIR}/usr/bin; \
1633		for i in *; do \
1634			ln -sf ../../${XDTP}/usr/bin/$$i \
1635			    ../../../../usr/bin/${XDDIR}-$$i; \
1636			ln -sf ../../${XDTP}/usr/bin/$$i \
1637			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
1638		done
1639.endif
1640