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