xref: /freebsd/Makefile.inc1 (revision a5921bc3653e2e286715e6fe8d473ec0d02da38c)
1#
2# $FreeBSD$
3#
4# Make command line options:
5#	-DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6#	-DNO_CLEAN do not clean at all
7#	-DDB_FROM_SRC use the user/group databases in src/etc instead of
8#	    the system database when installing.
9#	-DNO_SHARE do not go into share subdir
10#	-DKERNFAST define NO_KERNEL{CONFIG,CLEAN,OBJ}
11#	-DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
12#	-DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
13#	-DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
14#	-DNO_PORTSUPDATE do not update ports in ${MAKE} update
15#	-DNO_ROOT install without using root privilege
16#	-DNO_DOCUPDATE do not update doc in ${MAKE} update
17#	-DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects
18#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
19#	LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list
20#	LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target
21#	LOCAL_MTREE="list of mtree files" to process to allow local directories
22#	    to be created before files are installed
23#	LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools
24#	    list
25#	METALOG="path to metadata log" to write permission and ownership
26#	    when NO_ROOT is set.  (default: ${DESTDIR}/METALOG)
27#	TARGET="machine" to crossbuild world for a different machine type
28#	TARGET_ARCH= may be required when a TARGET supports multiple endians
29#	BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL})
30#	WORLD_FLAGS= additional flags to pass to make(1) during buildworld
31#	KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel
32#	SUBDIR_OVERRIDE="list of dirs" to build rather than everything.
33#	    All libraries and includes, and some build tools will still build.
34
35#
36# The intended user-driven targets are:
37# buildworld  - rebuild *everything*, including glue to help do upgrades
38# installworld- install everything built by "buildworld"
39# checkworld  - run test suite on installed world
40# doxygen     - build API documentation of the kernel
41# update      - convenient way to update your source tree (eg: svn/svnup)
42#
43# Standard targets (not defined here) are documented in the makefiles in
44# /usr/share/mk.  These include:
45#		obj depend all install clean cleandepend cleanobj
46
47.if !defined(TARGET) || !defined(TARGET_ARCH)
48.error "Both TARGET and TARGET_ARCH must be defined."
49.endif
50
51LOCALBASE?=	/usr/local
52
53# Cross toolchain changes must be in effect before bsd.compiler.mk
54# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes.
55.if defined(CROSS_TOOLCHAIN)
56.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk"
57CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}"
58.endif
59.include <bsd.compiler.mk>		# don't depend on src.opts.mk doing it
60.include "share/mk/src.opts.mk"
61
62# We must do lib/ and libexec/ before bin/ in case of a mid-install error to
63# keep the users system reasonably usable.  For static->dynamic root upgrades,
64# we don't want to install a dynamic binary without rtld and the needed
65# libraries.  More commonly, for dynamic root, we don't want to install a
66# binary that requires a newer library version that hasn't been installed yet.
67# This ordering is not a guarantee though.  The only guarantee of a working
68# system here would require fine-grained ordering of all components based
69# on their dependencies.
70SRCDIR?=	${.CURDIR}
71.if !empty(SUBDIR_OVERRIDE)
72SUBDIR=	${SUBDIR_OVERRIDE}
73.else
74SUBDIR=	lib libexec
75.if !defined(NO_ROOT) && (make(installworld) || make(install))
76# Ensure libraries are installed before progressing.
77SUBDIR+=.WAIT
78.endif
79SUBDIR+=bin
80.if ${MK_CDDL} != "no"
81SUBDIR+=cddl
82.endif
83SUBDIR+=gnu include
84.if ${MK_KERBEROS} != "no"
85SUBDIR+=kerberos5
86.endif
87.if ${MK_RESCUE} != "no"
88SUBDIR+=rescue
89.endif
90SUBDIR+=sbin
91.if ${MK_CRYPT} != "no"
92SUBDIR+=secure
93.endif
94.if !defined(NO_SHARE)
95SUBDIR+=share
96.endif
97SUBDIR+=sys usr.bin usr.sbin
98.if ${MK_TESTS} != "no"
99SUBDIR+=	tests
100.endif
101.if ${MK_OFED} != "no"
102SUBDIR+=contrib/ofed
103.endif
104
105# Local directories are last, since it is nice to at least get the base
106# system rebuilt before you do them.
107.for _DIR in ${LOCAL_DIRS}
108.if exists(${.CURDIR}/${_DIR}/Makefile)
109SUBDIR+=	${_DIR}
110.endif
111.endfor
112# Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR
113# of a LOCAL_DIRS directory.  This allows LOCAL_DIRS=foo and
114# LOCAL_LIB_DIRS=foo/lib to behave as expected.
115.for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|}
116_REDUNDENT_LIB_DIRS+=    ${LOCAL_LIB_DIRS:M${_DIR}*}
117.endfor
118.for _DIR in ${LOCAL_LIB_DIRS}
119.if empty(_REDUNDENT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)
120SUBDIR+=	${_DIR}
121.else
122.warning ${_DIR} not added to SUBDIR list.  See UPDATING 20141121.
123.endif
124.endfor
125
126# We must do etc/ last as it hooks into building the man whatis file
127# by calling 'makedb' in share/man.  This is only relevant for
128# install/distribute so they build the whatis file after every manpage is
129# installed.
130.if make(installworld) || make(install)
131SUBDIR+=.WAIT
132.endif
133SUBDIR+=etc
134
135.endif	# !empty(SUBDIR_OVERRIDE)
136
137.if defined(NOCLEAN)
138.warning NOCLEAN option is deprecated. Use NO_CLEAN instead.
139NO_CLEAN=	${NOCLEAN}
140.endif
141.if defined(NO_CLEANDIR)
142CLEANDIR=	clean cleandepend
143.else
144CLEANDIR=	cleandir
145.endif
146
147.if ${MK_META_MODE} == "yes"
148# If filemon is used then we can rely on the build being incremental-safe.
149# The .meta files will also track the build command and rebuild should
150# it change.
151.if empty(.MAKE.MODE:Mnofilemon)
152NO_CLEAN=	t
153.endif
154.endif
155
156LOCAL_TOOL_DIRS?=
157PACKAGEDIR?=	${DESTDIR}/${DISTDIR}
158
159.if empty(SHELL:M*csh*)
160BUILDENV_SHELL?=${SHELL}
161.else
162BUILDENV_SHELL?=/bin/sh
163.endif
164
165.if !defined(SVN) || empty(SVN)
166. for _P in /usr/bin /usr/local/bin
167.  for _S in svn svnlite
168.   if exists(${_P}/${_S})
169SVN=   ${_P}/${_S}
170.   endif
171.  endfor
172. endfor
173.endif
174SVNFLAGS?=	-r HEAD
175
176MAKEOBJDIRPREFIX?=	/usr/obj
177.if !defined(OSRELDATE)
178.if exists(/usr/include/osreldate.h)
179OSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
180		/usr/include/osreldate.h
181.else
182OSRELDATE=	0
183.endif
184.export OSRELDATE
185.endif
186
187# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION.
188.if !defined(_REVISION)
189_REVISION!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V REVISION
190.export _REVISION
191.endif
192.if !defined(_BRANCH)
193_BRANCH!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V BRANCH
194.export _BRANCH
195.endif
196.if !defined(SRCRELDATE)
197SRCRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
198		${SRCDIR}/sys/sys/param.h
199.export SRCRELDATE
200.endif
201.if !defined(VERSION)
202VERSION=	FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
203.export VERSION
204.endif
205
206.if !defined(PKG_VERSION)
207.if ${_BRANCH:MSTABLE*} || ${_BRANCH:MCURRENT*}
208TIMENOW=	%Y%m%d%H%M%S
209EXTRA_REVISION=	.s${TIMENOW:gmtime}
210.endif
211.if ${_BRANCH:M*-p*}
212EXTRA_REVISION=	_${_BRANCH:C/.*-p([0-9]+$)/\1/}
213.endif
214PKG_VERSION=	${_REVISION}${EXTRA_REVISION}
215.endif
216
217KNOWN_ARCHES?=	aarch64/arm64 \
218		amd64 \
219		arm \
220		armeb/arm \
221		armv6/arm \
222		armv6hf/arm \
223		i386 \
224		i386/pc98 \
225		mips \
226		mipsel/mips \
227		mips64el/mips \
228		mips64/mips \
229		mipsn32el/mips \
230		mipsn32/mips \
231		powerpc \
232		powerpc64/powerpc \
233		riscv64/riscv \
234		sparc64
235
236.if ${TARGET} == ${TARGET_ARCH}
237_t=		${TARGET}
238.else
239_t=		${TARGET_ARCH}/${TARGET}
240.endif
241.for _t in ${_t}
242.if empty(KNOWN_ARCHES:M${_t})
243.error Unknown target ${TARGET_ARCH}:${TARGET}.
244.endif
245.endfor
246
247.if ${TARGET} == ${MACHINE}
248TARGET_CPUTYPE?=${CPUTYPE}
249.else
250TARGET_CPUTYPE?=
251.endif
252
253.if !empty(TARGET_CPUTYPE)
254_TARGET_CPUTYPE=${TARGET_CPUTYPE}
255.else
256_TARGET_CPUTYPE=dummy
257.endif
258_CPUTYPE!=	MK_AUTO_OBJ=no MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
259		-f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
260.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
261.error CPUTYPE global should be set with ?=.
262.endif
263.if make(buildworld)
264BUILD_ARCH!=	uname -p
265.if ${MACHINE_ARCH} != ${BUILD_ARCH}
266.error To cross-build, set TARGET_ARCH.
267.endif
268.endif
269.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
270OBJTREE=	${MAKEOBJDIRPREFIX}
271.else
272OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
273.endif
274WORLDTMP=	${OBJTREE}${.CURDIR}/tmp
275BPATH=		${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin
276XPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin
277STRICTTMPPATH=	${BPATH}:${XPATH}
278TMPPATH=	${STRICTTMPPATH}:${PATH}
279
280#
281# Avoid running mktemp(1) unless actually needed.
282# It may not be functional, e.g., due to new ABI
283# when in the middle of installing over this system.
284#
285.if make(distributeworld) || make(installworld) || make(stageworld)
286INSTALLTMP!=	/usr/bin/mktemp -d -u -t install
287.endif
288
289.if make(stagekernel) || make(distributekernel)
290TAGS+=		kernel
291PACKAGE=	kernel
292.endif
293
294#
295# Building a world goes through the following stages
296#
297# 1. legacy stage [BMAKE]
298#	This stage is responsible for creating compatibility
299#	shims that are needed by the bootstrap-tools,
300#	build-tools and cross-tools stages. These are generally
301#	APIs that tools from one of those three stages need to
302#	build that aren't present on the host.
303# 1. bootstrap-tools stage [BMAKE]
304#	This stage is responsible for creating programs that
305#	are needed for backward compatibility reasons. They
306#	are not built as cross-tools.
307# 2. build-tools stage [TMAKE]
308#	This stage is responsible for creating the object
309#	tree and building any tools that are needed during
310#	the build process. Some programs are listed during
311#	this phase because they build binaries to generate
312#	files needed to build these programs. This stage also
313#	builds the 'build-tools' target rather than 'all'.
314# 3. cross-tools stage [XMAKE]
315#	This stage is responsible for creating any tools that
316#	are needed for building the system. A cross-compiler is one
317#	of them. This differs from build tools in two ways:
318#	1. the 'all' target is built rather than 'build-tools'
319#	2. these tools are installed into TMPPATH for stage 4.
320# 4. world stage [WMAKE]
321#	This stage actually builds the world.
322# 5. install stage (optional) [IMAKE]
323#	This stage installs a previously built world.
324#
325
326BOOTSTRAPPING?=	0
327
328# Common environment for world related stages
329CROSSENV+=	MAKEOBJDIRPREFIX=${OBJTREE} \
330		MACHINE_ARCH=${TARGET_ARCH} \
331		MACHINE=${TARGET} \
332		CPUTYPE=${TARGET_CPUTYPE}
333.if ${MK_META_MODE} != "no"
334# Don't rebuild build-tools targets during normal build.
335CROSSENV+=	BUILD_TOOLS_META=.NOMETA_CMP
336.endif
337.if ${MK_GROFF} != "no"
338CROSSENV+=	GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
339		GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
340		GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
341.endif
342.if defined(TARGET_CFLAGS)
343CROSSENV+=	${TARGET_CFLAGS}
344.endif
345
346# bootstrap-tools stage
347BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
348		TOOLS_PREFIX=${WORLDTMP} \
349		PATH=${BPATH}:${PATH} \
350		WORLDTMP=${WORLDTMP} \
351		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
352# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile
353BSARGS= 	DESTDIR= \
354		BOOTSTRAPPING=${OSRELDATE} \
355		SSP_CFLAGS= \
356		MK_HTML=no NO_LINT=yes MK_MAN=no \
357		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
358		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
359		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
360		MK_LLDB=no MK_TESTS=no \
361		MK_INCLUDES=yes
362
363BMAKE=		MAKEOBJDIRPREFIX=${WORLDTMP} \
364		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
365		${BSARGS}
366
367# build-tools stage
368TMAKE=		MAKEOBJDIRPREFIX=${OBJTREE} \
369		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
370		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
371		DESTDIR= \
372		BOOTSTRAPPING=${OSRELDATE} \
373		SSP_CFLAGS= \
374		-DNO_LINT \
375		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
376		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
377		MK_LLDB=no MK_TESTS=no
378
379# cross-tools stage
380XMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
381		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
382		MK_GDB=no MK_TESTS=no
383
384# kernel-tools stage
385KTMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
386		PATH=${BPATH}:${PATH} \
387		WORLDTMP=${WORLDTMP}
388KTMAKE=		TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \
389		${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
390		DESTDIR= \
391		BOOTSTRAPPING=${OSRELDATE} \
392		SSP_CFLAGS= \
393		MK_HTML=no -DNO_LINT MK_MAN=no \
394		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
395		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no
396
397# world stage
398WMAKEENV=	${CROSSENV} \
399		INSTALL="sh ${.CURDIR}/tools/install.sh" \
400		PATH=${TMPPATH}
401
402# make hierarchy
403HMAKE=		PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
404.if defined(NO_ROOT)
405HMAKE+=		PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
406.endif
407
408.if defined(CROSS_TOOLCHAIN_PREFIX)
409CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
410CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
411.endif
412
413# If we do not have a bootstrap binutils (because the in-tree one does not
414# support the target architecture), provide a default cross-binutils prefix.
415# This allows aarch64 builds, for example, to automatically use the
416# aarch64-binutils port or package.
417.if !make(showconfig)
418.if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \
419    !defined(CROSS_BINUTILS_PREFIX)
420CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/
421.if !exists(${CROSS_BINUTILS_PREFIX})
422.error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX.
423.endif
424.endif
425.endif
426
427XCOMPILERS=	CC CXX CPP
428.for COMPILER in ${XCOMPILERS}
429.if defined(CROSS_COMPILER_PREFIX)
430X${COMPILER}?=	${CROSS_COMPILER_PREFIX}${${COMPILER}}
431.else
432X${COMPILER}?=	${${COMPILER}}
433.endif
434.endfor
435XBINUTILS=	AS AR LD NM OBJCOPY OBJDUMP RANLIB SIZE STRINGS
436.for BINUTIL in ${XBINUTILS}
437.if defined(CROSS_BINUTILS_PREFIX) && \
438    exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}})
439X${BINUTIL}?=	${CROSS_BINUTILS_PREFIX}${${BINUTIL}}
440.else
441X${BINUTIL}?=	${${BINUTIL}}
442.endif
443.endfor
444CROSSENV+=	CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \
445		CPP="${XCPP} ${XCFLAGS}" \
446		AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \
447		OBJDUMP=${XOBJDUMP} OBJCOPY="${XOBJCOPY}" \
448		RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \
449		SIZE="${XSIZE}"
450
451.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
452# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
453# directory, but the compiler will look in the right place for its
454# tools so we don't need to tell it where to look.
455BFLAGS+=	-B${CROSS_BINUTILS_PREFIX}
456.endif
457
458# External compiler needs sysroot and target flags.
459.if ${XCC:N${CCACHE_BIN}:M/*} || ${MK_CROSS_COMPILER} == "no"
460.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX})
461BFLAGS+=	-B${WORLDTMP}/usr/bin
462.endif
463.if ${TARGET} == "arm"
464.if ${TARGET_ARCH:M*hf*} != ""
465TARGET_ABI=	gnueabihf
466.else
467TARGET_ABI=	gnueabi
468.endif
469.endif
470.if defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc
471# GCC requires -isystem and -L when using a cross-compiler.
472XCFLAGS+=	-isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib
473# Force using libc++ for external GCC.
474XCXXFLAGS+=	-isystem ${WORLDTMP}/usr/include/c++/v1 -std=c++11 \
475		-nostdinc++ -L${WORLDTMP}/../lib/libc++
476.else
477TARGET_ABI?=	unknown
478TARGET_TRIPLE?=	${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd11.0
479XCFLAGS+=	-target ${TARGET_TRIPLE}
480.endif
481XCFLAGS+=	--sysroot=${WORLDTMP}
482.else
483.endif # ${XCC:M/*} || ${MK_CROSS_COMPILER} == "no"
484
485.if !empty(BFLAGS)
486XCFLAGS+=	${BFLAGS}
487.endif
488
489.if ${MK_LIB32} != "no" && (${TARGET_ARCH} == "amd64" || \
490    ${TARGET_ARCH} == "powerpc64")
491LIBCOMPAT= 32
492.include "Makefile.libcompat"
493.elif ${MK_LIBSOFT} != "no" && ${TARGET_ARCH} == "armv6"
494LIBCOMPAT= SOFT
495.include "Makefile.libcompat"
496.endif
497
498WMAKE=		${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP}
499
500IMAKEENV=	${CROSSENV}
501IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1 \
502		${IMAKE_INSTALL} ${IMAKE_MTREE}
503.if empty(.MAKEFLAGS:M-n)
504IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
505		LD_LIBRARY_PATH=${INSTALLTMP} \
506		PATH_LOCALE=${INSTALLTMP}/locale
507IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
508.else
509IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
510.endif
511.if defined(DB_FROM_SRC)
512INSTALLFLAGS+=	-N ${.CURDIR}/etc
513MTREEFLAGS+=	-N ${.CURDIR}/etc
514.endif
515_INSTALL_DDIR=	${DESTDIR}/${DISTDIR}
516INSTALL_DDIR=	${_INSTALL_DDIR:S://:/:g:C:/$::}
517.if defined(NO_ROOT)
518METALOG?=	${DESTDIR}/${DISTDIR}/METALOG
519IMAKE+=		-DNO_ROOT METALOG=${METALOG}
520INSTALLFLAGS+=	-U -M ${METALOG} -D ${INSTALL_DDIR}
521MTREEFLAGS+=	-W
522.endif
523.if defined(BUILD_PKGS)
524INSTALLFLAGS+=	-h sha256
525.endif
526.if defined(DB_FROM_SRC) || defined(NO_ROOT)
527IMAKE_INSTALL=	INSTALL="install ${INSTALLFLAGS}"
528IMAKE_MTREE=	MTREE_CMD="mtree ${MTREEFLAGS}"
529.endif
530
531# kernel stage
532KMAKEENV=	${WMAKEENV}
533KMAKE=		${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
534.if ${MK_META_MODE} == "yes"
535# meta mode normally is disallowed when building from curdir==objdir, but we
536# want to allow it for the kernel build.
537KMAKE+=	.MAKE.MODE="${.MAKE.MODE} curdirOk=yes"
538.endif
539
540#
541# buildworld
542#
543# Attempt to rebuild the entire system, with reasonable chance of
544# success, regardless of how old your existing system is.
545#
546_worldtmp: .PHONY
547.if ${.CURDIR:C/[^,]//g} != ""
548#	The m4 build of sendmail files doesn't like it if ',' is used
549#	anywhere in the path of it's files.
550	@echo
551	@echo "*** Error: path to source tree contains a comma ','"
552	@echo
553	false
554.endif
555	@echo
556	@echo "--------------------------------------------------------------"
557	@echo ">>> Rebuilding the temporary build tree"
558	@echo "--------------------------------------------------------------"
559.if !defined(NO_CLEAN)
560	rm -rf ${WORLDTMP}
561.if defined(LIBCOMPAT)
562	rm -rf ${LIBCOMPATTMP}
563.endif
564.else
565	rm -rf ${WORLDTMP}/legacy/usr/include
566#	XXX - These can depend on any header file.
567	rm -f ${OBJTREE}${.CURDIR}/lib/libsysdecode/ioctl.c
568	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c
569.endif
570.for _dir in \
571    lib lib/casper usr legacy/bin legacy/usr
572	mkdir -p ${WORLDTMP}/${_dir}
573.endfor
574	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
575	    -p ${WORLDTMP}/legacy/usr >/dev/null
576.if ${MK_GROFF} != "no"
577	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
578	    -p ${WORLDTMP}/legacy/usr >/dev/null
579.endif
580	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
581	    -p ${WORLDTMP}/usr >/dev/null
582	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
583	    -p ${WORLDTMP}/usr/include >/dev/null
584	ln -sf ${.CURDIR}/sys ${WORLDTMP}
585.if ${MK_DEBUG_FILES} != "no"
586	# We could instead disable debug files for these build stages
587	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
588	    -p ${WORLDTMP}/legacy/usr/lib >/dev/null
589	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
590	    -p ${WORLDTMP}/usr/lib >/dev/null
591.endif
592.if defined(LIBCOMPAT)
593	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
594	    -p ${WORLDTMP}/usr >/dev/null
595.if ${MK_DEBUG_FILES} != "no"
596	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
597	    -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null
598	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
599	    -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null
600.endif
601.endif
602.if ${MK_TESTS} != "no"
603	mkdir -p ${WORLDTMP}${TESTSBASE}
604	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
605	    -p ${WORLDTMP}${TESTSBASE} >/dev/null
606.if ${MK_DEBUG_FILES} != "no"
607	mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE}
608	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
609	    -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null
610.endif
611.endif
612.for _mtree in ${LOCAL_MTREE}
613	mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
614.endfor
615_legacy:
616	@echo
617	@echo "--------------------------------------------------------------"
618	@echo ">>> stage 1.1: legacy release compatibility shims"
619	@echo "--------------------------------------------------------------"
620	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
621_bootstrap-tools:
622	@echo
623	@echo "--------------------------------------------------------------"
624	@echo ">>> stage 1.2: bootstrap tools"
625	@echo "--------------------------------------------------------------"
626	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
627_cleanobj:
628.if !defined(NO_CLEAN)
629	@echo
630	@echo "--------------------------------------------------------------"
631	@echo ">>> stage 2.1: cleaning up the object tree"
632	@echo "--------------------------------------------------------------"
633	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR}
634.if defined(LIBCOMPAT)
635	${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} -f Makefile.inc1 ${CLEANDIR}
636.endif
637.endif
638_obj:
639	@echo
640	@echo "--------------------------------------------------------------"
641	@echo ">>> stage 2.2: rebuilding the object tree"
642	@echo "--------------------------------------------------------------"
643	${_+_}cd ${.CURDIR}; ${WMAKE} obj
644_build-tools:
645	@echo
646	@echo "--------------------------------------------------------------"
647	@echo ">>> stage 2.3: build tools"
648	@echo "--------------------------------------------------------------"
649	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
650_cross-tools:
651	@echo
652	@echo "--------------------------------------------------------------"
653	@echo ">>> stage 3: cross tools"
654	@echo "--------------------------------------------------------------"
655	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
656	${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
657_includes:
658	@echo
659	@echo "--------------------------------------------------------------"
660	@echo ">>> stage 4.1: building includes"
661	@echo "--------------------------------------------------------------"
662# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need
663# headers from default SUBDIR.  Do SUBDIR_OVERRIDE includes last.
664	${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \
665	    MK_INCLUDES=yes includes
666.if !empty(SUBDIR_OVERRIDE) && make(buildworld)
667	${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes
668.endif
669_libraries:
670	@echo
671	@echo "--------------------------------------------------------------"
672	@echo ">>> stage 4.2: building libraries"
673	@echo "--------------------------------------------------------------"
674	${_+_}cd ${.CURDIR}; \
675	    ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
676	    MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} libraries
677everything: .PHONY
678	@echo
679	@echo "--------------------------------------------------------------"
680	@echo ">>> stage 4.3: building everything"
681	@echo "--------------------------------------------------------------"
682	${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all
683
684WMAKE_TGTS=
685WMAKE_TGTS+=	_worldtmp _legacy
686.if empty(SUBDIR_OVERRIDE)
687WMAKE_TGTS+=	_bootstrap-tools
688.endif
689WMAKE_TGTS+=	_cleanobj _obj _build-tools _cross-tools
690WMAKE_TGTS+=	_includes _libraries
691WMAKE_TGTS+=	everything
692.if defined(LIBCOMPAT) && empty(SUBDIR_OVERRIDE)
693WMAKE_TGTS+=	build${libcompat}
694.endif
695
696buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY
697.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
698
699buildworld_prologue: .PHONY
700	@echo "--------------------------------------------------------------"
701	@echo ">>> World build started on `LC_ALL=C date`"
702	@echo "--------------------------------------------------------------"
703
704buildworld_epilogue: .PHONY
705	@echo
706	@echo "--------------------------------------------------------------"
707	@echo ">>> World build completed on `LC_ALL=C date`"
708	@echo "--------------------------------------------------------------"
709
710#
711# We need to have this as a target because the indirection between Makefile
712# and Makefile.inc1 causes the correct PATH to be used, rather than a
713# modification of the current environment's PATH.  In addition, we need
714# to quote multiword values.
715#
716buildenvvars: .PHONY
717	@echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@}
718
719.if ${.TARGETS:Mbuildenv}
720.if ${.MAKEFLAGS:M-j}
721.error The buildenv target is incompatible with -j
722.endif
723.endif
724BUILDENV_DIR?=	${.CURDIR}
725buildenv: .PHONY
726	@echo Entering world for ${TARGET_ARCH}:${TARGET}
727.if ${BUILDENV_SHELL:M*zsh*}
728	@echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE}
729.endif
730	@cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \
731	    || true
732
733TOOLCHAIN_TGTS=	${WMAKE_TGTS:Neverything:Nbuild${libcompat}}
734toolchain: ${TOOLCHAIN_TGTS} .PHONY
735kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries} .PHONY
736
737#
738# installcheck
739#
740# Checks to be sure system is ready for installworld/installkernel.
741#
742installcheck: _installcheck_world _installcheck_kernel .PHONY
743_installcheck_world: .PHONY
744_installcheck_kernel: .PHONY
745
746#
747# Require DESTDIR to be set if installing for a different architecture or
748# using the user/group database in the source tree.
749#
750.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
751    defined(DB_FROM_SRC)
752.if !make(distributeworld)
753_installcheck_world: __installcheck_DESTDIR
754_installcheck_kernel: __installcheck_DESTDIR
755__installcheck_DESTDIR: .PHONY
756.if !defined(DESTDIR) || empty(DESTDIR)
757	@echo "ERROR: Please set DESTDIR!"; \
758	false
759.endif
760.endif
761.endif
762
763.if !defined(DB_FROM_SRC)
764#
765# Check for missing UIDs/GIDs.
766#
767CHECK_UIDS=	auditdistd
768CHECK_GIDS=	audit
769.if ${MK_SENDMAIL} != "no"
770CHECK_UIDS+=	smmsp
771CHECK_GIDS+=	smmsp
772.endif
773.if ${MK_PF} != "no"
774CHECK_UIDS+=	proxy
775CHECK_GIDS+=	proxy authpf
776.endif
777.if ${MK_UNBOUND} != "no"
778CHECK_UIDS+=	unbound
779CHECK_GIDS+=	unbound
780.endif
781_installcheck_world: __installcheck_UGID
782__installcheck_UGID: .PHONY
783.for uid in ${CHECK_UIDS}
784	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
785		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
786		false; \
787	fi
788.endfor
789.for gid in ${CHECK_GIDS}
790	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
791		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
792		false; \
793	fi
794.endfor
795.endif
796
797#
798# Required install tools to be saved in a scratch dir for safety.
799#
800.if ${MK_ZONEINFO} != "no"
801_zoneinfo=	zic tzsetup
802.endif
803
804ITOOLS=	[ awk cap_mkdb cat chflags chmod chown cmp cp \
805	date echo egrep find grep id install ${_install-info} \
806	ln make mkdir mtree mv pwd_mkdb \
807	rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \
808	${LOCAL_ITOOLS}
809
810# Needed for share/man
811.if ${MK_MAN} != "no"
812ITOOLS+=makewhatis
813.endif
814
815#
816# distributeworld
817#
818# Distributes everything compiled by a `buildworld'.
819#
820# installworld
821#
822# Installs everything compiled by a 'buildworld'.
823#
824
825# Non-base distributions produced by the base system
826EXTRA_DISTRIBUTIONS=	doc
827.if defined(LIBCOMPAT)
828EXTRA_DISTRIBUTIONS+=	lib${libcompat}
829.endif
830.if ${MK_TESTS} != "no"
831EXTRA_DISTRIBUTIONS+=	tests
832.endif
833
834DEBUG_DISTRIBUTIONS=
835.if ${MK_DEBUG_FILES} != "no"
836DEBUG_DISTRIBUTIONS+=	base ${EXTRA_DISTRIBUTIONS:S,doc,,:S,tests,,}
837.endif
838
839MTREE_MAGIC?=	mtree 2.0
840
841distributeworld installworld stageworld: _installcheck_world .PHONY
842	mkdir -p ${INSTALLTMP}
843	progs=$$(for prog in ${ITOOLS}; do \
844		if progpath=`which $$prog`; then \
845			echo $$progpath; \
846		else \
847			echo "Required tool $$prog not found in PATH." >&2; \
848			exit 1; \
849		fi; \
850	    done); \
851	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
852	    while read line; do \
853		set -- $$line; \
854		if [ "$$2 $$3" != "not found" ]; then \
855			echo $$2; \
856		else \
857			echo "Required library $$1 not found." >&2; \
858			exit 1; \
859		fi; \
860	    done); \
861	cp $$libs $$progs ${INSTALLTMP}
862	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
863.if defined(NO_ROOT)
864	-mkdir -p ${METALOG:H}
865	echo "#${MTREE_MAGIC}" > ${METALOG}
866.endif
867.if make(distributeworld)
868.for dist in ${EXTRA_DISTRIBUTIONS}
869	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
870	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
871	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
872	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
873	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
874	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
875	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
876.if ${MK_DEBUG_FILES} != "no"
877	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
878	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
879.endif
880.if defined(LIBCOMPAT)
881	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
882	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
883.if ${MK_DEBUG_FILES} != "no"
884	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
885	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null
886.endif
887.endif
888.if ${MK_TESTS} != "no" && ${dist} == "tests"
889	-mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
890	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
891	    -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
892.if ${MK_DEBUG_FILES} != "no"
893	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
894	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null
895.endif
896.endif
897.if defined(NO_ROOT)
898	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
899	    sed -e 's#^\./#./${dist}/#' >> ${METALOG}
900	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
901	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
902	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
903	    sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
904.if defined(LIBCOMPAT)
905	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \
906	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
907.endif
908.endif
909.endfor
910	-mkdir ${DESTDIR}/${DISTDIR}/base
911	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
912	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
913	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
914	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
915.endif
916	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
917	    ${IMAKEENV} rm -rf ${INSTALLTMP}
918.if make(distributeworld)
919.for dist in ${EXTRA_DISTRIBUTIONS}
920	find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -empty -delete
921.endfor
922.if defined(NO_ROOT)
923.for dist in base ${EXTRA_DISTRIBUTIONS}
924	@# For each file that exists in this dist, print the corresponding
925	@# line from the METALOG.  This relies on the fact that
926	@# a line containing only the filename will sort immediately before
927	@# the relevant mtree line.
928	cd ${DESTDIR}/${DISTDIR}; \
929	find ./${dist} | sort -u ${METALOG} - | \
930	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
931	${DESTDIR}/${DISTDIR}/${dist}.meta
932.endfor
933.for dist in ${DEBUG_DISTRIBUTIONS}
934	@# For each file that exists in this dist, print the corresponding
935	@# line from the METALOG.  This relies on the fact that
936	@# a line containing only the filename will sort immediately before
937	@# the relevant mtree line.
938	cd ${DESTDIR}/${DISTDIR}; \
939	find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
940	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
941	${DESTDIR}/${DISTDIR}/${dist}.debug.meta
942.endfor
943.endif
944.endif
945
946packageworld: .PHONY
947.for dist in base ${EXTRA_DISTRIBUTIONS}
948.if defined(NO_ROOT)
949	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
950	    tar cvf - --exclude usr/lib/debug \
951	    @${DESTDIR}/${DISTDIR}/${dist}.meta | \
952	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
953.else
954	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
955	    tar cvf - --exclude usr/lib/debug . | \
956	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
957.endif
958.endfor
959
960.for dist in ${DEBUG_DISTRIBUTIONS}
961. if defined(NO_ROOT)
962	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
963	    tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
964	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
965. else
966	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
967	    tar cvLf - usr/lib/debug | \
968	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
969. endif
970.endfor
971
972#
973# reinstall
974#
975# If you have a build server, you can NFS mount the source and obj directories
976# and do a 'make reinstall' on the *client* to install new binaries from the
977# most recent server build.
978#
979reinstall restage: .MAKE .PHONY
980	@echo "--------------------------------------------------------------"
981	@echo ">>> Making hierarchy"
982	@echo "--------------------------------------------------------------"
983	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
984	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy distribution
985	@echo
986	@echo "--------------------------------------------------------------"
987	@echo ">>> Installing everything"
988	@echo "--------------------------------------------------------------"
989	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
990.if defined(LIBCOMPAT)
991	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
992.endif
993.if defined(LIB32TMP) && ${MK_LIB32} != "no"
994	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
995.endif
996
997redistribute: .MAKE .PHONY
998	@echo "--------------------------------------------------------------"
999	@echo ">>> Distributing everything"
1000	@echo "--------------------------------------------------------------"
1001	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
1002.if defined(LIBCOMPAT)
1003	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \
1004	    DISTRIBUTION=lib${libcompat}
1005.endif
1006
1007distrib-dirs distribution: .MAKE .PHONY
1008	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1009	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1010.if make(distribution)
1011	${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1012		${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1013		METALOG=${METALOG} MK_TESTS=no installconfig
1014.endif
1015
1016#
1017# buildkernel and installkernel
1018#
1019# Which kernels to build and/or install is specified by setting
1020# KERNCONF. If not defined a GENERIC kernel is built/installed.
1021# Only the existing (depending TARGET) config files are used
1022# for building kernels and only the first of these is designated
1023# as the one being installed.
1024#
1025# Note that we have to use TARGET instead of TARGET_ARCH when
1026# we're in kernel-land. Since only TARGET_ARCH is (expected) to
1027# be set to cross-build, we have to make sure TARGET is set
1028# properly.
1029
1030.if defined(KERNFAST)
1031NO_KERNELCLEAN=	t
1032NO_KERNELCONFIG=	t
1033NO_KERNELOBJ=		t
1034# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1035.if !defined(KERNCONF) && ${KERNFAST} != "1"
1036KERNCONF=${KERNFAST}
1037.endif
1038.endif
1039.if ${TARGET_ARCH} == "powerpc64"
1040KERNCONF?=	GENERIC64
1041.else
1042KERNCONF?=	GENERIC
1043.endif
1044INSTKERNNAME?=	kernel
1045
1046KERNSRCDIR?=	${.CURDIR}/sys
1047KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
1048KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
1049KERNCONFDIR?=	${KRNLCONFDIR}
1050
1051BUILDKERNELS=
1052INSTALLKERNEL=
1053.if defined(NO_INSTALLKERNEL)
1054# All of the BUILDKERNELS loops start at index 1.
1055BUILDKERNELS+= dummy
1056.endif
1057.for _kernel in ${KERNCONF}
1058.if exists(${KERNCONFDIR}/${_kernel})
1059BUILDKERNELS+=	${_kernel}
1060.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1061INSTALLKERNEL= ${_kernel}
1062.endif
1063.endif
1064.endfor
1065
1066${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1067
1068#
1069# buildkernel
1070#
1071# Builds all kernels defined by BUILDKERNELS.
1072#
1073buildkernel: .MAKE .PHONY
1074.if empty(BUILDKERNELS:Ndummy)
1075	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1076	false
1077.endif
1078	@echo
1079.for _kernel in ${BUILDKERNELS:Ndummy}
1080	@echo "--------------------------------------------------------------"
1081	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1082	@echo "--------------------------------------------------------------"
1083	@echo "===> ${_kernel}"
1084	mkdir -p ${KRNLOBJDIR}
1085.if !defined(NO_KERNELCONFIG)
1086	@echo
1087	@echo "--------------------------------------------------------------"
1088	@echo ">>> stage 1: configuring the kernel"
1089	@echo "--------------------------------------------------------------"
1090	cd ${KRNLCONFDIR}; \
1091		PATH=${TMPPATH} \
1092		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1093			-I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1094.endif
1095.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1096	@echo
1097	@echo "--------------------------------------------------------------"
1098	@echo ">>> stage 2.1: cleaning up the object tree"
1099	@echo "--------------------------------------------------------------"
1100	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1101.endif
1102.if !defined(NO_KERNELOBJ)
1103	@echo
1104	@echo "--------------------------------------------------------------"
1105	@echo ">>> stage 2.2: rebuilding the object tree"
1106	@echo "--------------------------------------------------------------"
1107	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1108.endif
1109	@echo
1110	@echo "--------------------------------------------------------------"
1111	@echo ">>> stage 2.3: build tools"
1112	@echo "--------------------------------------------------------------"
1113	${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1114	@echo
1115	@echo "--------------------------------------------------------------"
1116	@echo ">>> stage 3.1: building everything"
1117	@echo "--------------------------------------------------------------"
1118	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1119	@echo "--------------------------------------------------------------"
1120	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1121	@echo "--------------------------------------------------------------"
1122.endfor
1123
1124NO_INSTALLEXTRAKERNELS?=	yes
1125
1126#
1127# installkernel, etc.
1128#
1129# Install the kernel defined by INSTALLKERNEL
1130#
1131installkernel installkernel.debug \
1132reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY
1133.if !defined(NO_INSTALLKERNEL)
1134.if empty(INSTALLKERNEL)
1135	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1136	false
1137.endif
1138	@echo "--------------------------------------------------------------"
1139	@echo ">>> Installing kernel ${INSTALLKERNEL}"
1140	@echo "--------------------------------------------------------------"
1141	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1142	    ${CROSSENV} PATH=${TMPPATH} \
1143	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1144.endif
1145.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1146.for _kernel in ${BUILDKERNELS:[2..-1]}
1147	@echo "--------------------------------------------------------------"
1148	@echo ">>> Installing kernel ${_kernel}"
1149	@echo "--------------------------------------------------------------"
1150	cd ${KRNLOBJDIR}/${_kernel}; \
1151	    ${CROSSENV} PATH=${TMPPATH} \
1152	    ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1153.endfor
1154.endif
1155
1156distributekernel distributekernel.debug: .PHONY
1157.if !defined(NO_INSTALLKERNEL)
1158.if empty(INSTALLKERNEL)
1159	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1160	false
1161.endif
1162	mkdir -p ${DESTDIR}/${DISTDIR}
1163.if defined(NO_ROOT)
1164	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1165.endif
1166	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1167	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1168	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1169	    DESTDIR=${INSTALL_DDIR}/kernel \
1170	    ${.TARGET:S/distributekernel/install/}
1171.if defined(NO_ROOT)
1172	@sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1173	    ${DESTDIR}/${DISTDIR}/kernel.meta
1174.endif
1175.endif
1176.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1177.for _kernel in ${BUILDKERNELS:[2..-1]}
1178.if defined(NO_ROOT)
1179	@echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1180.endif
1181	cd ${KRNLOBJDIR}/${_kernel}; \
1182	    ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1183	    ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1184	    KERNEL=${INSTKERNNAME}.${_kernel} \
1185	    DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1186	    ${.TARGET:S/distributekernel/install/}
1187.if defined(NO_ROOT)
1188	@sed -e "s|^./kernel.${_kernel}|.|" \
1189	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1190	    ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1191.endif
1192.endfor
1193.endif
1194
1195packagekernel: .PHONY
1196.if defined(NO_ROOT)
1197.if !defined(NO_INSTALLKERNEL)
1198	cd ${DESTDIR}/${DISTDIR}/kernel; \
1199	    tar cvf - --exclude '*.debug' \
1200	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1201	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1202.endif
1203	cd ${DESTDIR}/${DISTDIR}/kernel; \
1204	    tar cvf - --include '*/*/*.debug' \
1205	    @${DESTDIR}/${DISTDIR}/kernel.meta | \
1206	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1207.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1208.for _kernel in ${BUILDKERNELS:[2..-1]}
1209	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1210	    tar cvf - --exclude '*.debug' \
1211	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1212	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1213	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1214	    tar cvf - --include '*/*/*.debug' \
1215	    @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1216	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1217.endfor
1218.endif
1219.else
1220.if !defined(NO_INSTALLKERNEL)
1221	cd ${DESTDIR}/${DISTDIR}/kernel; \
1222	    tar cvf - --exclude '*.debug' . | \
1223	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1224.endif
1225	cd ${DESTDIR}/${DISTDIR}/kernel; \
1226	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1227	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz
1228.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1229.for _kernel in ${BUILDKERNELS:[2..-1]}
1230	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1231	    tar cvf - --exclude '*.debug' . | \
1232	    ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1233	cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1234	    tar cvf - --include '*/*/*.debug' $$(eval find .) | \
1235	    ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz
1236.endfor
1237.endif
1238.endif
1239
1240stagekernel: .PHONY
1241	${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel
1242
1243PORTSDIR?=	/usr/ports
1244WSTAGEDIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/${TARGET}.${TARGET_ARCH}/worldstage
1245KSTAGEDIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/${TARGET}.${TARGET_ARCH}/kernelstage
1246REPODIR?=	${MAKEOBJDIRPREFIX}${.CURDIR}/repo
1247PKGSIGNKEY?=	# empty
1248
1249.ORDER:		stage-packages create-packages
1250.ORDER:		create-packages create-world-packages
1251.ORDER:		create-packages create-kernel-packages
1252.ORDER:		create-packages sign-packages
1253
1254_pkgbootstrap: .PHONY
1255.if !exists(${LOCALBASE}/sbin/pkg)
1256	@env ASSUME_ALWAYS_YES=YES pkg bootstrap
1257.endif
1258
1259packages: .PHONY
1260	${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} real-packages
1261
1262package-pkg: .PHONY
1263	rm -rf /tmp/ports.${TARGET} || :
1264	env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \
1265		PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} WSTAGEDIR=${WSTAGEDIR} \
1266		sh ${.CURDIR}/release/scripts/make-pkg-package.sh
1267
1268real-packages:	stage-packages create-packages sign-packages .PHONY
1269
1270stage-packages: .PHONY
1271	@mkdir -p ${REPODIR} ${WSTAGEDIR} ${KSTAGEDIR}
1272	${_+_}@cd ${.CURDIR}; \
1273		${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT -B stageworld ; \
1274		${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT -B stagekernel
1275
1276create-packages:	_pkgbootstrap .PHONY
1277	@mkdir -p ${REPODIR}
1278	${_+_}@cd ${.CURDIR}; \
1279		${MAKE} DESTDIR=${WSTAGEDIR} \
1280			PKG_VERSION=${PKG_VERSION} create-world-packages ; \
1281		${MAKE} DESTDIR=${KSTAGEDIR} \
1282			PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \
1283			create-kernel-packages
1284
1285create-world-packages:	_pkgbootstrap .PHONY
1286	@rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || :
1287	@cd ${WSTAGEDIR} ; \
1288		awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1289		${WSTAGEDIR}/METALOG
1290	@for plist in ${WSTAGEDIR}/*.plist; do \
1291		plist=$${plist##*/} ; \
1292		pkgname=$${plist%.plist} ; \
1293		sh ${SRCDIR}/release/packages/generate-ucl.sh -o $${pkgname} \
1294			-s ${SRCDIR} -u ${WSTAGEDIR}/$${pkgname}.ucl ; \
1295	done
1296	@for plist in ${WSTAGEDIR}/*.plist; do \
1297		plist=$${plist##*/} ; \
1298		pkgname=$${plist%.plist} ; \
1299		awk -F\" ' \
1300			/^name/ { printf("===> Creating %s-", $$2); next } \
1301			/^version/ { print $$2; next } \
1302			' ${WSTAGEDIR}/$${pkgname}.ucl ; \
1303		pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1304			create -M ${WSTAGEDIR}/$${pkgname}.ucl \
1305			-p ${WSTAGEDIR}/$${pkgname}.plist \
1306			-r ${WSTAGEDIR} \
1307			-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} ; \
1308	done
1309
1310create-kernel-packages:	_pkgbootstrap .PHONY
1311.if exists(${KSTAGEDIR}/kernel.meta)
1312.for flavor in "" -debug
1313	@cd ${KSTAGEDIR}/${DISTDIR} ; \
1314	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1315		-v kernel=yes -v _kernconf=${INSTALLKERNEL} \
1316		${KSTAGEDIR}/kernel.meta ; \
1317	cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1318	pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1319	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1320		-e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \
1321		-e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1322		-e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \
1323		-e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1324		-e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1325		${SRCDIR}/release/packages/kernel.ucl \
1326		> ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1327	awk -F\" ' \
1328		/name/ { printf("===> Creating %s-", $$2); next } \
1329		/version/ {print $$2; next } ' \
1330		${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \
1331	pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1332		create -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \
1333		-p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \
1334		-r ${KSTAGEDIR}/${DISTDIR} \
1335		-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION}
1336.endfor
1337.endif
1338.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
1339.for _kernel in ${BUILDKERNELS:[2..-1]}
1340.if exists(${KSTAGEDIR}/kernel.${_kernel}.meta)
1341.for flavor in "" -debug
1342	@cd ${KSTAGEDIR}/kernel.${_kernel} ; \
1343	awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1344		-v kernel=yes -v _kernconf=${_kernel} \
1345		${KSTAGEDIR}/kernel.${_kernel}.meta ; \
1346	cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1347	pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1348	sed -e "s/%VERSION%/${PKG_VERSION}/" \
1349		-e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \
1350		-e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \
1351		-e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \
1352		-e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1353		-e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1354		${SRCDIR}/release/packages/kernel.ucl \
1355		> ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
1356	awk -F\" ' \
1357		/name/ { printf("===> Creating %s-", $$2); next } \
1358		/version/ {print $$2; next } ' \
1359		${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \
1360	pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh -o ALLOW_BASE_SHLIBS=yes \
1361		create -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \
1362		-p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \
1363		-r ${KSTAGEDIR}/kernel.${_kernel} \
1364		-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION}
1365.endfor
1366.endif
1367.endfor
1368.endif
1369
1370sign-packages:	_pkgbootstrap .PHONY
1371	@[ -L "${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest" ] && \
1372		unlink ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest ; \
1373	pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh repo \
1374		-o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1375		${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1376		${PKGSIGNKEY} ; \
1377	ln -s ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/${PKG_VERSION} \
1378		${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest
1379
1380#
1381#
1382# checkworld
1383#
1384# Run test suite on installed world.
1385#
1386checkworld: .PHONY
1387	@if [ ! -x ${LOCALBASE}/bin/kyua ]; then \
1388		echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
1389		exit 1; \
1390	fi
1391	${_+_}${LOCALBASE}/bin/kyua test -k ${TESTSBASE}/Kyuafile
1392
1393#
1394#
1395# doxygen
1396#
1397# Build the API documentation with doxygen
1398#
1399doxygen: .PHONY
1400	@if [ ! -x ${LOCALBASE}/bin/doxygen ]; then \
1401		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1402		exit 1; \
1403	fi
1404	${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1405
1406#
1407# update
1408#
1409# Update the source tree(s), by running svn/svnup to update to the
1410# latest copy.
1411#
1412update: .PHONY
1413.if defined(SVN_UPDATE)
1414	@echo "--------------------------------------------------------------"
1415	@echo ">>> Updating ${.CURDIR} using Subversion"
1416	@echo "--------------------------------------------------------------"
1417	@(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
1418.endif
1419
1420#
1421# ------------------------------------------------------------------------
1422#
1423# From here onwards are utility targets used by the 'make world' and
1424# related targets.  If your 'world' breaks, you may like to try to fix
1425# the problem and manually run the following targets to attempt to
1426# complete the build.  Beware, this is *not* guaranteed to work, you
1427# need to have a pretty good grip on the current state of the system
1428# to attempt to manually finish it.  If in doubt, 'make world' again.
1429#
1430
1431#
1432# legacy: Build compatibility shims for the next three targets. This is a
1433# minimal set of tools and shims necessary to compensate for older systems
1434# which don't have the APIs required by the targets built in bootstrap-tools,
1435# build-tools or cross-tools.
1436#
1437
1438# ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
1439# r296685 fix cross-endian objcopy
1440.if ${BOOTSTRAPPING} < 1100102
1441_elftoolchain_libs= lib/libelf lib/libdwarf
1442.endif
1443
1444legacy: .PHONY
1445.if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0
1446	@echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \
1447	false
1448.endif
1449.for _tool in tools/build ${_elftoolchain_libs}
1450	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \
1451	    cd ${.CURDIR}/${_tool}; \
1452	    ${MAKE} DIRPRFX=${_tool}/ obj; \
1453	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1454	    ${MAKE} DIRPRFX=${_tool}/ all; \
1455	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1456.endfor
1457
1458#
1459# bootstrap-tools: Build tools needed for compatibility. These are binaries that
1460# are built to build other binaries in the system. However, the focus of these
1461# binaries is usually quite narrow. Bootstrap tools use the host's compiler and
1462# libraries, augmented by -legacy.
1463#
1464_bt=		_bootstrap-tools
1465
1466.if ${MK_GAMES} != "no"
1467_strfile=	usr.bin/fortune/strfile
1468.endif
1469
1470.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1471_gperf=		gnu/usr.bin/gperf
1472.endif
1473
1474.if ${MK_GROFF} != "no"
1475_groff=		gnu/usr.bin/groff \
1476		usr.bin/soelim
1477.endif
1478
1479.if ${MK_VT} != "no"
1480_vtfontcvt=	usr.bin/vtfontcvt
1481.endif
1482
1483.if ${BOOTSTRAPPING} < 900002
1484_sed=		usr.bin/sed
1485.endif
1486
1487.if ${BOOTSTRAPPING} < 1000033
1488_libopenbsd=	lib/libopenbsd
1489_m4=		usr.bin/m4
1490_lex=		usr.bin/lex
1491
1492${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd
1493${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1494.endif
1495
1496.if ${BOOTSTRAPPING} < 1000026
1497_nmtree=	lib/libnetbsd \
1498		usr.sbin/nmtree
1499
1500${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1501.endif
1502
1503.if ${BOOTSTRAPPING} < 1000027
1504_cat=		bin/cat
1505.endif
1506
1507# r264059 support for status=
1508.if ${BOOTSTRAPPING} < 1100017
1509_dd=		bin/dd
1510.endif
1511
1512# r277259 crunchide: Correct 64-bit section header offset
1513# r281674 crunchide: always include both 32- and 64-bit ELF support
1514# r285986 crunchen: use STRIPBIN rather than STRIP
1515.if ${BOOTSTRAPPING} < 1100078
1516_crunch=	usr.sbin/crunch
1517.endif
1518
1519.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1520_awk=		usr.bin/awk
1521.endif
1522
1523# r296926 -P keymap search path, MFC to stable/10 in r298297
1524.if ${BOOTSTRAPPING} < 1003501 || \
1525	(${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103)
1526_kbdcontrol=	usr.sbin/kbdcontrol
1527.endif
1528
1529_yacc=		lib/liby \
1530		usr.bin/yacc
1531
1532${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1533
1534.if ${MK_BSNMP} != "no"
1535_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
1536.endif
1537
1538# We need to build tblgen when we're building clang either as
1539# the bootstrap compiler, or as the part of the normal build.
1540.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no"
1541_clang_tblgen= \
1542	lib/clang/libllvmsupport \
1543	lib/clang/libllvmtablegen \
1544	usr.bin/clang/llvm-tblgen \
1545	usr.bin/clang/clang-tblgen
1546
1547${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1548${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1549.endif
1550
1551# Default to building the GPL DTC, but build the BSDL one if users explicitly
1552# request it.
1553_dtc= usr.bin/dtc
1554.if ${MK_GPL_DTC} != "no"
1555_dtc= gnu/usr.bin/dtc
1556.endif
1557
1558.if ${MK_KERBEROS} != "no"
1559_kerberos5_bootstrap_tools= \
1560	kerberos5/tools/make-roken \
1561	kerberos5/lib/libroken \
1562	kerberos5/lib/libvers \
1563	kerberos5/tools/asn1_compile \
1564	kerberos5/tools/slc \
1565	usr.bin/compile_et
1566
1567.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1568.endif
1569
1570# r283777 makewhatis(1) replaced with mandoc version which builds a database.
1571.if ${MK_MANDOCDB} != "no" && ${BOOTSTRAPPING} < 1100075
1572_libopenbsd?=	lib/libopenbsd
1573_makewhatis=	lib/libsqlite3 \
1574		usr.bin/mandoc
1575${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd ${_bt}-lib/libsqlite3
1576.endif
1577
1578bootstrap-tools: .PHONY
1579
1580#	Please document (add comment) why something is in 'bootstrap-tools'.
1581#	Try to bound the building of the bootstrap-tool to just the
1582#	FreeBSD versions that need the tool built at this stage of the build.
1583.for _tool in \
1584    ${_clang_tblgen} \
1585    ${_kerberos5_bootstrap_tools} \
1586    ${_strfile} \
1587    ${_gperf} \
1588    ${_groff} \
1589    ${_dtc} \
1590    ${_awk} \
1591    ${_cat} \
1592    ${_dd} \
1593    ${_kbdcontrol} \
1594    usr.bin/lorder \
1595    ${_libopenbsd} \
1596    ${_makewhatis} \
1597    usr.bin/rpcgen \
1598    ${_sed} \
1599    ${_yacc} \
1600    ${_m4} \
1601    ${_lex} \
1602    usr.bin/xinstall \
1603    ${_gensnmptree} \
1604    usr.sbin/config \
1605    ${_crunch} \
1606    ${_nmtree} \
1607    ${_vtfontcvt} \
1608    usr.bin/localedef
1609${_bt}-${_tool}: .PHONY .MAKE
1610	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1611		cd ${.CURDIR}/${_tool}; \
1612		${MAKE} DIRPRFX=${_tool}/ obj; \
1613		${MAKE} DIRPRFX=${_tool}/ all; \
1614		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1615
1616bootstrap-tools: ${_bt}-${_tool}
1617.endfor
1618
1619#
1620# build-tools: Build special purpose build tools
1621#
1622.if !defined(NO_SHARE)
1623_share=	share/syscons/scrnmaps
1624.endif
1625
1626.if ${MK_GCC} != "no"
1627_gcc_tools= gnu/usr.bin/cc/cc_tools
1628.endif
1629
1630.if ${MK_RESCUE} != "no"
1631# rescue includes programs that have build-tools targets
1632_rescue=rescue/rescue
1633.endif
1634
1635.for _tool in \
1636    bin/csh \
1637    bin/sh \
1638    ${LOCAL_TOOL_DIRS} \
1639    lib/ncurses/ncurses \
1640    lib/ncurses/ncursesw \
1641    ${_rescue} \
1642    ${_share} \
1643    usr.bin/awk \
1644    lib/libmagic \
1645    usr.bin/mkesdb_static \
1646    usr.bin/mkcsmapper_static \
1647    usr.bin/vi/catalog
1648build-tools_${_tool}: .PHONY
1649	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1650		cd ${.CURDIR}/${_tool}; \
1651		${MAKE} DIRPRFX=${_tool}/ obj; \
1652		${MAKE} DIRPRFX=${_tool}/ build-tools
1653build-tools: build-tools_${_tool}
1654.endfor
1655.for _tool in \
1656    ${_gcc_tools}
1657build-tools_${_tool}: .PHONY
1658	${_+_}@${ECHODIR} "===> ${_tool} (obj,all)"; \
1659		cd ${.CURDIR}/${_tool}; \
1660		${MAKE} DIRPRFX=${_tool}/ obj; \
1661		${MAKE} DIRPRFX=${_tool}/ all
1662build-tools: build-tools_${_tool}
1663.endfor
1664
1665#
1666# kernel-tools: Build kernel-building tools
1667#
1668kernel-tools: .PHONY
1669	mkdir -p ${MAKEOBJDIRPREFIX}/usr
1670	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1671	    -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1672
1673#
1674# cross-tools: All the tools needed to build the rest of the system after
1675# we get done with the earlier stages. It is the last set of tools needed
1676# to begin building the target binaries.
1677#
1678.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1679.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1680_btxld=		usr.sbin/btxld
1681.endif
1682.endif
1683
1684# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
1685# resulting from missing bug fixes or ELF Toolchain updates.
1686.if ${MK_CDDL} != "no"
1687_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
1688    cddl/usr.bin/ctfmerge
1689.endif
1690
1691# If we're given an XAS, don't build binutils.
1692.if ${XAS:M/*} == ""
1693.if ${MK_BINUTILS_BOOTSTRAP} != "no"
1694_binutils=	gnu/usr.bin/binutils
1695.endif
1696.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1697_elftctools=	lib/libelftc \
1698		lib/libpe \
1699		usr.bin/elfcopy \
1700		usr.bin/nm \
1701		usr.bin/size \
1702		usr.bin/strings
1703# These are not required by the build, but can be useful for developers who
1704# cross-build on a FreeBSD 10 host:
1705_elftctools+=	usr.bin/addr2line
1706.endif
1707.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1708# If cross-building with an external binutils we still need to build strip for
1709# the target (for at least crunchide).
1710_elftctools=	lib/libelftc \
1711		lib/libpe \
1712		usr.bin/elfcopy
1713.endif
1714
1715# If an full path to an external cross compiler is given, don't build
1716# a cross compiler.
1717.if ${XCC:N${CCACHE_BIN}:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1718.if ${MK_CLANG_BOOTSTRAP} != "no"
1719_clang=		usr.bin/clang
1720_clang_libs=	lib/clang
1721.endif
1722.if ${MK_GCC_BOOTSTRAP} != "no"
1723_cc=		gnu/usr.bin/cc
1724.endif
1725.endif
1726.if ${MK_USB} != "no"
1727_usb_tools=	sys/boot/usb/tools
1728.endif
1729
1730cross-tools: .MAKE .PHONY
1731.for _tool in \
1732    ${_clang_libs} \
1733    ${_clang} \
1734    ${_binutils} \
1735    ${_elftctools} \
1736    ${_dtrace_tools} \
1737    ${_cc} \
1738    ${_btxld} \
1739    ${_crunchide} \
1740    ${_usb_tools}
1741	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1742		cd ${.CURDIR}/${_tool}; \
1743		${MAKE} DIRPRFX=${_tool}/ obj; \
1744		${MAKE} DIRPRFX=${_tool}/ all; \
1745		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1746.endfor
1747
1748NXBDESTDIR=	${OBJTREE}/nxb-bin
1749NXBENV=		MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1750		INSTALL="sh ${.CURDIR}/tools/install.sh" \
1751		PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
1752NXBMAKE=	${NXBENV} ${MAKE} \
1753		LLVM_TBLGEN=${NXBDESTDIR}/usr/bin/llvm-tblgen \
1754		CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \
1755		MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1756		MK_GDB=no MK_TESTS=no \
1757		SSP_CFLAGS= \
1758		MK_HTML=no NO_LINT=yes MK_MAN=no \
1759		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
1760		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
1761		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
1762		MK_LLDB=no MK_DEBUG_FILES=no
1763
1764# native-xtools is the current target for qemu-user cross builds of ports
1765# via poudriere and the imgact_binmisc kernel module.
1766# For non-clang enabled targets that are still using the in tree gcc
1767# we must build a gperf binary for one instance of its Makefiles.  On
1768# clang-enabled systems, the gperf binary is obsolete.
1769native-xtools: .PHONY
1770.if ${MK_GCC_BOOTSTRAP} != "no"
1771	mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
1772	${_+_}@${ECHODIR} "===> ${_gperf} (obj,all,install)"; \
1773	cd ${.CURDIR}/${_gperf}; \
1774	${NXBMAKE} DIRPRFX=${_gperf}/ obj; \
1775	${NXBMAKE} DIRPRFX=${_gperf}/ all; \
1776	${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
1777.endif
1778	mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
1779	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1780	    -p ${NXBDESTDIR}/usr >/dev/null
1781	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1782	    -p ${NXBDESTDIR}/usr/include >/dev/null
1783.if ${MK_DEBUG_FILES} != "no"
1784	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1785	    -p ${NXBDESTDIR}/usr/lib >/dev/null
1786.endif
1787.for _tool in \
1788    bin/cat \
1789    bin/chmod \
1790    bin/cp \
1791    bin/csh \
1792    bin/echo \
1793    bin/expr \
1794    bin/hostname \
1795    bin/ln \
1796    bin/ls \
1797    bin/mkdir \
1798    bin/mv \
1799    bin/ps \
1800    bin/realpath \
1801    bin/rm \
1802    bin/rmdir \
1803    bin/sh \
1804    bin/sleep \
1805    ${_clang_tblgen} \
1806    usr.bin/ar \
1807    ${_binutils} \
1808    ${_elftctools} \
1809    ${_cc} \
1810    ${_gcc_tools} \
1811    ${_clang_libs} \
1812    ${_clang} \
1813    sbin/md5 \
1814    sbin/sysctl \
1815    gnu/usr.bin/diff \
1816    usr.bin/awk \
1817    usr.bin/basename \
1818    usr.bin/bmake \
1819    usr.bin/bzip2 \
1820    usr.bin/cmp \
1821    usr.bin/dirname \
1822    usr.bin/env \
1823    usr.bin/fetch \
1824    usr.bin/find \
1825    usr.bin/grep \
1826    usr.bin/gzip \
1827    usr.bin/id \
1828    usr.bin/lex \
1829    usr.bin/lorder \
1830    usr.bin/mktemp \
1831    usr.bin/mt \
1832    usr.bin/patch \
1833    usr.bin/sed \
1834    usr.bin/sort \
1835    usr.bin/tar \
1836    usr.bin/touch \
1837    usr.bin/tr \
1838    usr.bin/true \
1839    usr.bin/uniq \
1840    usr.bin/unzip \
1841    usr.bin/xargs \
1842    usr.bin/xinstall \
1843    usr.bin/xz \
1844    usr.bin/yacc \
1845    usr.sbin/chown
1846	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
1847		cd ${.CURDIR}/${_tool}; \
1848		${NXBMAKE} DIRPRFX=${_tool}/ obj; \
1849		${NXBMAKE} DIRPRFX=${_tool}/ all; \
1850		${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${NXBDESTDIR} install
1851.endfor
1852
1853#
1854# hierarchy - ensure that all the needed directories are present
1855#
1856hierarchy hier: .MAKE .PHONY
1857	${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
1858
1859#
1860# libraries - build all libraries, and install them under ${DESTDIR}.
1861#
1862# The list of libraries with dependents (${_prebuild_libs}) and their
1863# interdependencies (__L) are built automatically by the
1864# ${.CURDIR}/tools/make_libdeps.sh script.
1865#
1866libraries: .MAKE .PHONY
1867	${_+_}cd ${.CURDIR}; \
1868	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
1869	    ${MAKE} -f Makefile.inc1 _startup_libs; \
1870	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1871	    ${MAKE} -f Makefile.inc1 _generic_libs
1872
1873#
1874# static libgcc.a prerequisite for shared libc
1875#
1876_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1877
1878# These dependencies are not automatically generated:
1879#
1880# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1881# all shared libraries for ELF.
1882#
1883_startup_libs=	gnu/lib/csu
1884_startup_libs+=	lib/csu
1885_startup_libs+=	gnu/lib/libgcc
1886_startup_libs+=	lib/libcompiler_rt
1887_startup_libs+=	lib/libc
1888_startup_libs+=	lib/libc_nonshared
1889.if ${MK_LIBCPLUSPLUS} != "no"
1890_startup_libs+=	lib/libcxxrt
1891.endif
1892
1893gnu/lib/libgcc__L: lib/libc__L
1894gnu/lib/libgcc__L: lib/libc_nonshared__L
1895.if ${MK_LIBCPLUSPLUS} != "no"
1896lib/libcxxrt__L: gnu/lib/libgcc__L
1897.endif
1898
1899_prebuild_libs=	${_kerberos5_lib_libasn1} \
1900		${_kerberos5_lib_libhdb} \
1901		${_kerberos5_lib_libheimbase} \
1902		${_kerberos5_lib_libheimntlm} \
1903		${_libsqlite3} \
1904		${_kerberos5_lib_libheimipcc} \
1905		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1906		${_kerberos5_lib_libroken} \
1907		${_kerberos5_lib_libwind} \
1908		lib/libbz2 ${_libcom_err} lib/libcrypt \
1909		lib/libelf lib/libexpat \
1910		lib/libfigpar \
1911		${_lib_libgssapi} \
1912		lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
1913		${_lib_casper} \
1914		lib/ncurses/ncurses lib/ncurses/ncursesw \
1915		lib/libopie lib/libpam/libpam ${_lib_libthr} \
1916		${_lib_libradius} lib/libsbuf lib/libtacplus \
1917		lib/libgeom \
1918		${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1919		${_cddl_lib_libuutil} \
1920		${_cddl_lib_libavl} \
1921		${_cddl_lib_libzfs_core} \
1922		${_cddl_lib_libctf} \
1923		lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
1924		${_secure_lib_libcrypto} ${_lib_libldns} \
1925		${_secure_lib_libssh} ${_secure_lib_libssl} \
1926		gnu/lib/libdialog
1927
1928.if ${MK_GNUCXX} != "no"
1929_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1930gnu/lib/libstdc++__L: lib/msun__L
1931gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
1932.endif
1933
1934.if ${MK_LIBCPLUSPLUS} != "no"
1935_prebuild_libs+= lib/libc++
1936.endif
1937
1938lib/libgeom__L: lib/libexpat__L
1939lib/libkvm__L: lib/libelf__L
1940
1941.if ${MK_LIBTHR} != "no"
1942_lib_libthr=	lib/libthr
1943.endif
1944
1945.if ${MK_RADIUS_SUPPORT} != "no"
1946_lib_libradius=	lib/libradius
1947.endif
1948
1949.if ${MK_OFED} != "no"
1950_ofed_lib=		contrib/ofed/usr.lib
1951_prebuild_libs+=	contrib/ofed/usr.lib/libosmcomp
1952_prebuild_libs+=	contrib/ofed/usr.lib/libopensm
1953_prebuild_libs+=	contrib/ofed/usr.lib/libibcommon
1954_prebuild_libs+=	contrib/ofed/usr.lib/libibverbs
1955_prebuild_libs+=	contrib/ofed/usr.lib/libibumad
1956
1957contrib/ofed/usr.lib/libopensm__L: lib/libthr__L
1958contrib/ofed/usr.lib/libosmcomp__L: lib/libthr__L
1959contrib/ofed/usr.lib/libibumad__L: contrib/ofed/usr.lib/libibcommon__L
1960.endif
1961
1962.if ${MK_CASPER} != "no"
1963_lib_casper=	lib/libcasper
1964.endif
1965
1966lib/libpjdlog__L: lib/libutil__L
1967lib/libcasper__L: lib/libnv__L
1968lib/liblzma__L: lib/libthr__L
1969
1970_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1971.for _DIR in ${LOCAL_LIB_DIRS}
1972.if exists(${.CURDIR}/${_DIR}/Makefile) && empty(_generic_libs:M${_DIR})
1973_generic_libs+= ${_DIR}
1974.endif
1975.endfor
1976
1977lib/libopie__L lib/libtacplus__L: lib/libmd__L
1978
1979.if ${MK_CDDL} != "no"
1980_cddl_lib_libumem= cddl/lib/libumem
1981_cddl_lib_libnvpair= cddl/lib/libnvpair
1982_cddl_lib_libavl= cddl/lib/libavl
1983_cddl_lib_libuutil= cddl/lib/libuutil
1984_cddl_lib_libzfs_core= cddl/lib/libzfs_core
1985_cddl_lib_libctf= cddl/lib/libctf
1986_cddl_lib= cddl/lib
1987cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1988cddl/lib/libzfs__L: lib/libgeom__L
1989cddl/lib/libctf__L: lib/libz__L
1990.endif
1991# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
1992# on select architectures though (see cddl/lib/Makefile)
1993.if ${MACHINE_CPUARCH} != "sparc64"
1994_prebuild_libs+=	lib/libproc lib/librtld_db
1995.endif
1996
1997.if ${MK_CRYPT} != "no"
1998.if ${MK_OPENSSL} != "no"
1999_secure_lib_libcrypto= secure/lib/libcrypto
2000_secure_lib_libssl= secure/lib/libssl
2001lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
2002.if ${MK_LDNS} != "no"
2003_lib_libldns= lib/libldns
2004lib/libldns__L: secure/lib/libcrypto__L
2005.endif
2006.if ${MK_OPENSSH} != "no"
2007_secure_lib_libssh= secure/lib/libssh
2008secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
2009.if ${MK_LDNS} != "no"
2010secure/lib/libssh__L: lib/libldns__L
2011.endif
2012.if ${MK_KERBEROS_SUPPORT} != "no"
2013secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
2014    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
2015    lib/libmd__L kerberos5/lib/libroken__L
2016.endif
2017.endif
2018.endif
2019_secure_lib=	secure/lib
2020.endif
2021
2022.if ${MK_KERBEROS} != "no"
2023kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
2024kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2025    kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
2026    kerberos5/lib/libwind__L lib/libsqlite3__L
2027kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
2028    kerberos5/lib/libroken__L lib/libcom_err__L
2029kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2030    secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
2031kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2032    lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
2033    kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
2034    kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
2035kerberos5/lib/libroken__L: lib/libcrypt__L
2036kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
2037kerberos5/lib/libheimbase__L: lib/libthr__L
2038kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
2039.endif
2040
2041lib/libsqlite3__L: lib/libthr__L
2042
2043.if ${MK_GSSAPI} != "no"
2044_lib_libgssapi=	lib/libgssapi
2045.endif
2046
2047.if ${MK_KERBEROS} != "no"
2048_kerberos5_lib=	kerberos5/lib
2049_kerberos5_lib_libasn1= kerberos5/lib/libasn1
2050_kerberos5_lib_libhdb= kerberos5/lib/libhdb
2051_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
2052_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
2053_kerberos5_lib_libhx509= kerberos5/lib/libhx509
2054_kerberos5_lib_libroken= kerberos5/lib/libroken
2055_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
2056_libsqlite3= lib/libsqlite3
2057_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
2058_kerberos5_lib_libwind= kerberos5/lib/libwind
2059_libcom_err= lib/libcom_err
2060.endif
2061
2062.if ${MK_NIS} != "no"
2063_lib_libypclnt=	lib/libypclnt
2064.endif
2065
2066.if ${MK_OPENSSL} == "no"
2067lib/libradius__L: lib/libmd__L
2068.endif
2069
2070lib/libproc__L: \
2071    ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
2072.if ${MK_CXX} != "no"
2073.if ${MK_LIBCPLUSPLUS} != "no"
2074lib/libproc__L: lib/libcxxrt__L
2075.else # This implies MK_GNUCXX != "no"; see lib/libproc
2076lib/libproc__L: gnu/lib/libsupc++__L
2077.endif
2078.endif
2079
2080gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
2081
2082.for _lib in ${_prereq_libs}
2083${_lib}__PL: .PHONY .MAKE
2084.if exists(${.CURDIR}/${_lib})
2085	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2086		cd ${.CURDIR}/${_lib}; \
2087		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2088		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2089		    DIRPRFX=${_lib}/ all; \
2090		${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2091		    DIRPRFX=${_lib}/ install
2092.endif
2093.endfor
2094
2095.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
2096${_lib}__L: .PHONY .MAKE
2097.if exists(${.CURDIR}/${_lib})
2098	${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \
2099		cd ${.CURDIR}/${_lib}; \
2100		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2101		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
2102		${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
2103.endif
2104.endfor
2105
2106_prereq_libs: ${_prereq_libs:S/$/__PL/}
2107_startup_libs: ${_startup_libs:S/$/__L/}
2108_prebuild_libs: ${_prebuild_libs:S/$/__L/}
2109_generic_libs: ${_generic_libs:S/$/__L/}
2110
2111# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
2112# 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
2113# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
2114# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
2115# parallel.  This is safe for the world stage of buildworld though since it has
2116# already built libraries in a proper order and installed includes into
2117# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
2118# avoid trashing a system if it crashes mid-install.
2119.if !make(all) || defined(_PARALLEL_SUBDIR_OK)
2120SUBDIR_PARALLEL=
2121.endif
2122
2123.include <bsd.subdir.mk>
2124
2125.if make(check-old) || make(check-old-dirs) || \
2126    make(check-old-files) || make(check-old-libs) || \
2127    make(delete-old) || make(delete-old-dirs) || \
2128    make(delete-old-files) || make(delete-old-libs)
2129
2130#
2131# check for / delete old files section
2132#
2133
2134.include "ObsoleteFiles.inc"
2135
2136OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
2137else you can not start such an application. Consult UPDATING for more \
2138information regarding how to cope with the removal/revision bump of a \
2139specific library."
2140
2141.if !defined(BATCH_DELETE_OLD_FILES)
2142RM_I=-i
2143.else
2144RM_I=-v
2145.endif
2146
2147delete-old-files: .PHONY
2148	@echo ">>> Removing old files (only deletes safe to delete libs)"
2149# Ask for every old file if the user really wants to remove it.
2150# It's annoying, but better safe than sorry.
2151# NB: We cannot pass the list of OLD_FILES as a parameter because the
2152# argument list will get too long. Using .for/.endfor make "loops" will make
2153# the Makefile parser segfault.
2154	@exec 3<&0; \
2155	cd ${.CURDIR}; \
2156	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2157	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2158	while read file; do \
2159		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2160			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2161			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2162		fi; \
2163		for ext in debug symbols; do \
2164		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2165		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2166			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2167			      <&3; \
2168		  fi; \
2169		done; \
2170	done
2171# Remove catpages without corresponding manpages.
2172	@exec 3<&0; \
2173	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2174	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2175	while read catpage; do \
2176		read manpage; \
2177		if [ ! -e "$${manpage}" ]; then \
2178			rm ${RM_I} $${catpage} <&3; \
2179	        fi; \
2180	done
2181	@echo ">>> Old files removed"
2182
2183check-old-files: .PHONY
2184	@echo ">>> Checking for old files"
2185	@cd ${.CURDIR}; \
2186	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2187	    -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2188	while read file; do \
2189		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2190		 	echo "${DESTDIR}/$${file}"; \
2191		fi; \
2192		for ext in debug symbols; do \
2193		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2194			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2195		  fi; \
2196		done; \
2197	done
2198# Check for catpages without corresponding manpages.
2199	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2200	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2201	while read catpage; do \
2202		read manpage; \
2203		if [ ! -e "$${manpage}" ]; then \
2204			echo $${catpage}; \
2205	        fi; \
2206	done
2207
2208delete-old-libs: .PHONY
2209	@echo ">>> Removing old libraries"
2210	@echo "${OLD_LIBS_MESSAGE}" | fmt
2211	@exec 3<&0; \
2212	cd ${.CURDIR}; \
2213	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2214	    -V OLD_LIBS | xargs -n1 | \
2215	while read file; do \
2216		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2217			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2218			rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2219		fi; \
2220		for ext in debug symbols; do \
2221		  if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2222		      "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2223			  rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2224			      <&3; \
2225		  fi; \
2226		done; \
2227	done
2228	@echo ">>> Old libraries removed"
2229
2230check-old-libs: .PHONY
2231	@echo ">>> Checking for old libraries"
2232	@cd ${.CURDIR}; \
2233	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2234	    -V OLD_LIBS | xargs -n1 | \
2235	while read file; do \
2236		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2237			echo "${DESTDIR}/$${file}"; \
2238		fi; \
2239		for ext in debug symbols; do \
2240		  if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2241			  echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2242		  fi; \
2243		done; \
2244	done
2245
2246delete-old-dirs: .PHONY
2247	@echo ">>> Removing old directories"
2248	@cd ${.CURDIR}; \
2249	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2250	    -V OLD_DIRS | xargs -n1 | sort -r | \
2251	while read dir; do \
2252		if [ -d "${DESTDIR}/$${dir}" ]; then \
2253			rmdir -v "${DESTDIR}/$${dir}" || true; \
2254		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2255			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2256		fi; \
2257	done
2258	@echo ">>> Old directories removed"
2259
2260check-old-dirs: .PHONY
2261	@echo ">>> Checking for old directories"
2262	@cd ${.CURDIR}; \
2263	${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2264	    -V OLD_DIRS | xargs -n1 | \
2265	while read dir; do \
2266		if [ -d "${DESTDIR}/$${dir}" ]; then \
2267			echo "${DESTDIR}/$${dir}"; \
2268		elif [ -L "${DESTDIR}/$${dir}" ]; then \
2269			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2270		fi; \
2271	done
2272
2273delete-old: delete-old-files delete-old-dirs .PHONY
2274	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
2275
2276check-old: check-old-files check-old-libs check-old-dirs .PHONY
2277	@echo "To remove old files and directories run '${MAKE} delete-old'."
2278	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
2279
2280.endif
2281
2282#
2283# showconfig - show build configuration.
2284#
2285showconfig: .PHONY
2286	@(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1; \
2287	  ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1) 2>&1 | grep ^MK_ | sort -u
2288
2289.if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2290DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2291
2292.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2293.if exists(${KERNCONFDIR}/${KERNCONF})
2294FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2295	'${KERNCONFDIR}/${KERNCONF}' ; echo
2296.endif
2297.endif
2298
2299.endif
2300
2301.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2302DTBOUTPUTPATH= ${.CURDIR}
2303.endif
2304
2305#
2306# Build 'standalone' Device Tree Blob
2307#
2308builddtb: .PHONY
2309	@PATH=${TMPPATH} MACHINE=${TARGET} \
2310	${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2311	    "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2312
2313###############
2314
2315# cleanworld
2316# In the following, the first 'rm' in a series will usually remove all
2317# files and directories.  If it does not, then there are probably some
2318# files with file flags set, so this unsets them and tries the 'rm' a
2319# second time.  There are situations where this target will be cleaning
2320# some directories via more than one method, but that duplication is
2321# needed to correctly handle all the possible situations.  Removing all
2322# files without file flags set in the first 'rm' instance saves time,
2323# because 'chflags' will need to operate on fewer files afterwards.
2324#
2325# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
2326# created by bsd.obj.mk, except that we don't want to .include that file
2327# in this makefile.
2328#
2329BW_CANONICALOBJDIR:=${OBJTREE}${.CURDIR}
2330cleanworld: .PHONY
2331.if exists(${BW_CANONICALOBJDIR}/)
2332	-rm -rf ${BW_CANONICALOBJDIR}/*
2333	-chflags -R 0 ${BW_CANONICALOBJDIR}
2334	rm -rf ${BW_CANONICALOBJDIR}/*
2335.endif
2336.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
2337	#   To be safe in this case, fall back to a 'make cleandir'
2338	${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
2339.endif
2340
2341.if defined(TARGET) && defined(TARGET_ARCH)
2342
2343.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2344XDEV_CPUTYPE?=${CPUTYPE}
2345.else
2346XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2347.endif
2348
2349NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2350	MK_MAN=no MK_NLS=no MK_PROFILE=no \
2351	MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2352	TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2353	CPUTYPE=${XDEV_CPUTYPE}
2354
2355XDDIR=${TARGET_ARCH}-freebsd
2356XDTP?=/usr/${XDDIR}
2357.if ${XDTP:N/*}
2358.error XDTP variable should be an absolute path
2359.endif
2360
2361CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2362	INSTALL="sh ${.CURDIR}/tools/install.sh"
2363CDENV= ${CDBENV} \
2364	TOOLS_PREFIX=${XDTP}
2365CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2366	--sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2367	-B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2368CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2369	CPP="${CPP} ${CD2CFLAGS}" \
2370	MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2371
2372CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2373CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2374CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2375XDDESTDIR=${DESTDIR}/${XDTP}
2376.if !defined(OSREL)
2377OSREL!= uname -r | sed -e 's/[-(].*//'
2378.endif
2379
2380.ORDER: xdev-build xdev-install xdev-links
2381xdev: xdev-build xdev-install .PHONY
2382
2383.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2384xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY
2385
2386_xb-worldtmp: .PHONY
2387	mkdir -p ${CDTMP}/usr
2388	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2389	    -p ${CDTMP}/usr >/dev/null
2390
2391_xb-bootstrap-tools: .PHONY
2392.for _tool in \
2393    ${_clang_tblgen} \
2394    ${_gperf}
2395	${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
2396	cd ${.CURDIR}/${_tool}; \
2397	${CDMAKE} DIRPRFX=${_tool}/ obj; \
2398	${CDMAKE} DIRPRFX=${_tool}/ all; \
2399	${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2400.endfor
2401
2402_xb-build-tools: .PHONY
2403	${_+_}@cd ${.CURDIR}; \
2404	${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2405
2406_xb-cross-tools: .PHONY
2407.for _tool in \
2408    ${_binutils} \
2409    ${_elftctools} \
2410    usr.bin/ar \
2411    ${_clang_libs} \
2412    ${_clang} \
2413    ${_cc}
2414	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \
2415	cd ${.CURDIR}/${_tool}; \
2416	${CDMAKE} DIRPRFX=${_tool}/ obj; \
2417	${CDMAKE} DIRPRFX=${_tool}/ all
2418.endfor
2419
2420_xi-mtree: .PHONY
2421	${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2422	mkdir -p ${XDDESTDIR}
2423	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2424	    -p ${XDDESTDIR} >/dev/null
2425	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2426	    -p ${XDDESTDIR}/usr >/dev/null
2427	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2428	    -p ${XDDESTDIR}/usr/include >/dev/null
2429.if defined(LIBCOMPAT)
2430	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
2431	    -p ${XDDESTDIR}/usr >/dev/null
2432.endif
2433.if ${MK_TESTS} != "no"
2434	mkdir -p ${XDDESTDIR}${TESTSBASE}
2435	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2436	    -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2437.endif
2438
2439.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2440xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY
2441
2442_xi-cross-tools: .PHONY
2443	@echo "_xi-cross-tools"
2444.for _tool in \
2445    ${_binutils} \
2446    ${_elftctools} \
2447    usr.bin/ar \
2448    ${_clang_libs} \
2449    ${_clang} \
2450    ${_cc}
2451	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2452	cd ${.CURDIR}/${_tool}; \
2453	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2454.endfor
2455
2456_xi-includes: .PHONY
2457	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
2458		DESTDIR=${XDDESTDIR}
2459
2460_xi-libraries: .PHONY
2461	${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2462		DESTDIR=${XDDESTDIR}
2463
2464xdev-links: .PHONY
2465	${_+_}cd ${XDDESTDIR}/usr/bin; \
2466	mkdir -p ../../../../usr/bin; \
2467		for i in *; do \
2468			ln -sf ../../${XDTP}/usr/bin/$$i \
2469			    ../../../../usr/bin/${XDDIR}-$$i; \
2470			ln -sf ../../${XDTP}/usr/bin/$$i \
2471			    ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2472		done
2473.else
2474xdev xdev-build xdev-install xdev-links: .PHONY
2475	@echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2476.endif
2477