Makefile.inc1 revision 298402
1#
2# $FreeBSD: head/Makefile.inc1 298402 2016-04-21 13:14:55Z emaste $
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(VERSION)
189REVISION!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V REVISION
190BRANCH!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V BRANCH
191SRCRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
192		${SRCDIR}/sys/sys/param.h
193VERSION=	FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
194.export VERSION
195.endif
196
197.if !defined(PKG_VERSION)
198REVISION!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V REVISION
199BRANCH!=	MK_AUTO_OBJ=no ${MAKE} -C ${SRCDIR}/release -V BRANCH
200SRCRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
201		${SRCDIR}/sys/sys/param.h
202.if ${BRANCH:MSTABLE*} || ${BRANCH:MCURRENT*}
203TIMENOW=	%Y%m%d%H%M%S
204EXTRA_REVISION=	.s${TIMENOW:gmtime}
205.endif
206.if ${BRANCH:M*-p*}
207EXTRA_REVISION=	_${BRANCH:C/.*-p([0-9]+$)/\1/}
208.endif
209PKG_VERSION=	${REVISION}${EXTRA_REVISION}
210.endif
211
212KNOWN_ARCHES?=	aarch64/arm64 \
213		amd64 \
214		arm \
215		armeb/arm \
216		armv6/arm \
217		armv6hf/arm \
218		i386 \
219		i386/pc98 \
220		mips \
221		mipsel/mips \
222		mips64el/mips \
223		mips64/mips \
224		mipsn32el/mips \
225		mipsn32/mips \
226		powerpc \
227		powerpc64/powerpc \
228		riscv64/riscv \
229		sparc64
230
231.if ${TARGET} == ${TARGET_ARCH}
232_t=		${TARGET}
233.else
234_t=		${TARGET_ARCH}/${TARGET}
235.endif
236.for _t in ${_t}
237.if empty(KNOWN_ARCHES:M${_t})
238.error Unknown target ${TARGET_ARCH}:${TARGET}.
239.endif
240.endfor
241
242.if ${TARGET} == ${MACHINE}
243TARGET_CPUTYPE?=${CPUTYPE}
244.else
245TARGET_CPUTYPE?=
246.endif
247
248.if !empty(TARGET_CPUTYPE)
249_TARGET_CPUTYPE=${TARGET_CPUTYPE}
250.else
251_TARGET_CPUTYPE=dummy
252.endif
253_CPUTYPE!=	MK_AUTO_OBJ=no MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
254		-f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
255.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
256.error CPUTYPE global should be set with ?=.
257.endif
258.if make(buildworld)
259BUILD_ARCH!=	uname -p
260.if ${MACHINE_ARCH} != ${BUILD_ARCH}
261.error To cross-build, set TARGET_ARCH.
262.endif
263.endif
264.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
265OBJTREE=	${MAKEOBJDIRPREFIX}
266.else
267OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
268.endif
269WORLDTMP=	${OBJTREE}${.CURDIR}/tmp
270BPATH=		${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin
271XPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin
272STRICTTMPPATH=	${BPATH}:${XPATH}
273TMPPATH=	${STRICTTMPPATH}:${PATH}
274
275#
276# Avoid running mktemp(1) unless actually needed.
277# It may not be functional, e.g., due to new ABI
278# when in the middle of installing over this system.
279#
280.if make(distributeworld) || make(installworld) || make(stageworld)
281INSTALLTMP!=	/usr/bin/mktemp -d -u -t install
282.endif
283
284.if make(stagekernel) || make(distributekernel)
285TAGS+=		kernel
286PACKAGE=	kernel
287.endif
288
289#
290# Building a world goes through the following stages
291#
292# 1. legacy stage [BMAKE]
293#	This stage is responsible for creating compatibility
294#	shims that are needed by the bootstrap-tools,
295#	build-tools and cross-tools stages. These are generally
296#	APIs that tools from one of those three stages need to
297#	build that aren't present on the host.
298# 1. bootstrap-tools stage [BMAKE]
299#	This stage is responsible for creating programs that
300#	are needed for backward compatibility reasons. They
301#	are not built as cross-tools.
302# 2. build-tools stage [TMAKE]
303#	This stage is responsible for creating the object
304#	tree and building any tools that are needed during
305#	the build process. Some programs are listed during
306#	this phase because they build binaries to generate
307#	files needed to build these programs. This stage also
308#	builds the 'build-tools' target rather than 'all'.
309# 3. cross-tools stage [XMAKE]
310#	This stage is responsible for creating any tools that
311#	are needed for building the system. A cross-compiler is one
312#	of them. This differs from build tools in two ways:
313#	1. the 'all' target is built rather than 'build-tools'
314#	2. these tools are installed into TMPPATH for stage 4.
315# 4. world stage [WMAKE]
316#	This stage actually builds the world.
317# 5. install stage (optional) [IMAKE]
318#	This stage installs a previously built world.
319#
320
321BOOTSTRAPPING?=	0
322
323# Common environment for world related stages
324CROSSENV+=	MAKEOBJDIRPREFIX=${OBJTREE} \
325		MACHINE_ARCH=${TARGET_ARCH} \
326		MACHINE=${TARGET} \
327		CPUTYPE=${TARGET_CPUTYPE}
328.if ${MK_META_MODE} != "no"
329# Don't rebuild build-tools targets during normal build.
330CROSSENV+=	BUILD_TOOLS_META=.NOMETA_CMP
331.endif
332.if ${MK_GROFF} != "no"
333CROSSENV+=	GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
334		GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
335		GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
336.endif
337.if defined(TARGET_CFLAGS)
338CROSSENV+=	${TARGET_CFLAGS}
339.endif
340
341# bootstrap-tools stage
342BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
343		TOOLS_PREFIX=${WORLDTMP} \
344		PATH=${BPATH}:${PATH} \
345		WORLDTMP=${WORLDTMP} \
346		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
347# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile
348BSARGS= 	DESTDIR= \
349		BOOTSTRAPPING=${OSRELDATE} \
350		SSP_CFLAGS= \
351		MK_HTML=no NO_LINT=yes MK_MAN=no \
352		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
353		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
354		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
355		MK_LLDB=no MK_TESTS=no \
356		MK_INCLUDES=yes
357
358BMAKE=		MAKEOBJDIRPREFIX=${WORLDTMP} \
359		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
360		${BSARGS}
361
362# build-tools stage
363TMAKE=		MAKEOBJDIRPREFIX=${OBJTREE} \
364		${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
365		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
366		DESTDIR= \
367		BOOTSTRAPPING=${OSRELDATE} \
368		SSP_CFLAGS= \
369		-DNO_LINT \
370		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
371		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
372		MK_LLDB=no MK_TESTS=no
373
374# cross-tools stage
375XMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
376		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
377		MK_GDB=no MK_TESTS=no
378
379# kernel-tools stage
380KTMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
381		PATH=${BPATH}:${PATH} \
382		WORLDTMP=${WORLDTMP}
383KTMAKE=		TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \
384		${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
385		DESTDIR= \
386		BOOTSTRAPPING=${OSRELDATE} \
387		SSP_CFLAGS= \
388		MK_HTML=no -DNO_LINT MK_MAN=no \
389		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
390		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no
391
392# world stage
393WMAKEENV=	${CROSSENV} \
394		INSTALL="sh ${.CURDIR}/tools/install.sh" \
395		PATH=${TMPPATH}
396
397# make hierarchy
398HMAKE=		PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
399.if defined(NO_ROOT)
400HMAKE+=		PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
401.endif
402
403.if defined(CROSS_TOOLCHAIN_PREFIX)
404CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
405CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
406.endif
407
408# If we do not have a bootstrap binutils (because the in-tree one does not
409# support the target architecture), provide a default cross-binutils prefix.
410# This allows aarch64 builds, for example, to automatically use the
411# aarch64-binutils port or package.
412.if !make(showconfig)
413.if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \
414    !defined(CROSS_BINUTILS_PREFIX)
415CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/
416.if !exists(${CROSS_BINUTILS_PREFIX})
417.error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX.
418.endif
419.endif
420.endif
421
422XCOMPILERS=	CC CXX CPP
423.for COMPILER in ${XCOMPILERS}
424.if defined(CROSS_COMPILER_PREFIX)
425X${COMPILER}?=	${CROSS_COMPILER_PREFIX}${${COMPILER}}
426.else
427X${COMPILER}?=	${${COMPILER}}
428.endif
429.endfor
430XBINUTILS=	AS AR LD NM OBJCOPY OBJDUMP RANLIB SIZE STRINGS
431.for BINUTIL in ${XBINUTILS}
432.if defined(CROSS_BINUTILS_PREFIX) && \
433    exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}})
434X${BINUTIL}?=	${CROSS_BINUTILS_PREFIX}${${BINUTIL}}
435.else
436X${BINUTIL}?=	${${BINUTIL}}
437.endif
438.endfor
439CROSSENV+=	CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \
440		CPP="${XCPP} ${XCFLAGS}" \
441		AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \
442		OBJDUMP=${XOBJDUMP} OBJCOPY="${XOBJCOPY}" \
443		RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \
444		SIZE="${XSIZE}"
445
446.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX})
447# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
448# directory, but the compiler will look in the right place for its
449# tools so we don't need to tell it where to look.
450BFLAGS+=	-B${CROSS_BINUTILS_PREFIX}
451.endif
452
453# External compiler needs sysroot and target flags.
454.if ${XCC:N${CCACHE_BIN}:M/*} || ${MK_CROSS_COMPILER} == "no"
455.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX})
456BFLAGS+=	-B${WORLDTMP}/usr/bin
457.endif
458.if ${TARGET} == "arm"
459.if ${TARGET_ARCH:M*hf*} != ""
460TARGET_ABI=	gnueabihf
461.else
462TARGET_ABI=	gnueabi
463.endif
464.endif
465.if defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc
466# GCC requires -isystem and -L when using a cross-compiler.
467XCFLAGS+=	-isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib
468# Force using libc++ for external GCC.
469XCXXFLAGS+=	-isystem ${WORLDTMP}/usr/include/c++/v1 -std=c++11 \
470		-nostdinc++ -L${WORLDTMP}/../lib/libc++
471.else
472TARGET_ABI?=	unknown
473TARGET_TRIPLE?=	${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd11.0
474XCFLAGS+=	-target ${TARGET_TRIPLE}
475.endif
476XCFLAGS+=	--sysroot=${WORLDTMP}
477.else
478.endif # ${XCC:M/*} || ${MK_CROSS_COMPILER} == "no"
479
480.if !empty(BFLAGS)
481XCFLAGS+=	${BFLAGS}
482.endif
483
484.if ${MK_LIB32} != "no" && (${TARGET_ARCH} == "amd64" || \
485    ${TARGET_ARCH} == "powerpc64")
486LIBCOMPAT= 32
487.include "Makefile.libcompat"
488.elif ${MK_LIBSOFT} != "no" && ${TARGET_ARCH} == "armv6"
489LIBCOMPAT= SOFT
490.include "Makefile.libcompat"
491.endif
492
493WMAKE=		${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP}
494
495IMAKEENV=	${CROSSENV}
496IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1 \
497		${IMAKE_INSTALL} ${IMAKE_MTREE}
498.if empty(.MAKEFLAGS:M-n)
499IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
500		LD_LIBRARY_PATH=${INSTALLTMP} \
501		PATH_LOCALE=${INSTALLTMP}/locale
502IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
503.else
504IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
505.endif
506.if defined(DB_FROM_SRC)
507INSTALLFLAGS+=	-N ${.CURDIR}/etc
508MTREEFLAGS+=	-N ${.CURDIR}/etc
509.endif
510_INSTALL_DDIR=	${DESTDIR}/${DISTDIR}
511INSTALL_DDIR=	${_INSTALL_DDIR:S://:/:g:C:/$::}
512.if defined(NO_ROOT)
513METALOG?=	${DESTDIR}/${DISTDIR}/METALOG
514IMAKE+=		-DNO_ROOT METALOG=${METALOG}
515INSTALLFLAGS+=	-U -M ${METALOG} -D ${INSTALL_DDIR}
516MTREEFLAGS+=	-W
517.endif
518.if defined(BUILD_PKGS)
519INSTALLFLAGS+=	-h sha256
520.endif
521.if defined(DB_FROM_SRC) || defined(NO_ROOT)
522IMAKE_INSTALL=	INSTALL="install ${INSTALLFLAGS}"
523IMAKE_MTREE=	MTREE_CMD="mtree ${MTREEFLAGS}"
524.endif
525
526# kernel stage
527KMAKEENV=	${WMAKEENV}
528KMAKE=		${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
529
530#
531# buildworld
532#
533# Attempt to rebuild the entire system, with reasonable chance of
534# success, regardless of how old your existing system is.
535#
536_worldtmp: .PHONY
537.if ${.CURDIR:C/[^,]//g} != ""
538#	The m4 build of sendmail files doesn't like it if ',' is used
539#	anywhere in the path of it's files.
540	@echo
541	@echo "*** Error: path to source tree contains a comma ','"
542	@echo
543	false
544.endif
545	@echo
546	@echo "--------------------------------------------------------------"
547	@echo ">>> Rebuilding the temporary build tree"
548	@echo "--------------------------------------------------------------"
549.if !defined(NO_CLEAN)
550	rm -rf ${WORLDTMP}
551.if defined(LIBCOMPAT)
552	rm -rf ${LIBCOMPATTMP}
553.endif
554.else
555	rm -rf ${WORLDTMP}/legacy/usr/include
556#	XXX - These can depend on any header file.
557	rm -f ${OBJTREE}${.CURDIR}/lib/libsysdecode/ioctl.c
558	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c
559.endif
560.for _dir in \
561    lib lib/casper usr legacy/bin legacy/usr
562	mkdir -p ${WORLDTMP}/${_dir}
563.endfor
564	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
565	    -p ${WORLDTMP}/legacy/usr >/dev/null
566.if ${MK_GROFF} != "no"
567	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
568	    -p ${WORLDTMP}/legacy/usr >/dev/null
569.endif
570	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
571	    -p ${WORLDTMP}/usr >/dev/null
572	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
573	    -p ${WORLDTMP}/usr/include >/dev/null
574	ln -sf ${.CURDIR}/sys ${WORLDTMP}
575.if ${MK_DEBUG_FILES} != "no"
576	# We could instead disable debug files for these build stages
577	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
578	    -p ${WORLDTMP}/legacy/usr/lib >/dev/null
579	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
580	    -p ${WORLDTMP}/usr/lib >/dev/null
581.endif
582.if defined(LIBCOMPAT)
583	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
584	    -p ${WORLDTMP}/usr >/dev/null
585.if ${MK_DEBUG_FILES} != "no"
586	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
587	    -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null
588	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
589	    -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null
590.endif
591.endif
592.if ${MK_TESTS} != "no"
593	mkdir -p ${WORLDTMP}${TESTSBASE}
594	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
595	    -p ${WORLDTMP}${TESTSBASE} >/dev/null
596.if ${MK_DEBUG_FILES} != "no"
597	mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE}
598	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
599	    -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null
600.endif
601.endif
602.for _mtree in ${LOCAL_MTREE}
603	mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
604.endfor
605_legacy:
606	@echo
607	@echo "--------------------------------------------------------------"
608	@echo ">>> stage 1.1: legacy release compatibility shims"
609	@echo "--------------------------------------------------------------"
610	${_+_}cd ${.CURDIR}; ${BMAKE} legacy
611_bootstrap-tools:
612	@echo
613	@echo "--------------------------------------------------------------"
614	@echo ">>> stage 1.2: bootstrap tools"
615	@echo "--------------------------------------------------------------"
616	${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
617_cleanobj:
618.if !defined(NO_CLEAN)
619	@echo
620	@echo "--------------------------------------------------------------"
621	@echo ">>> stage 2.1: cleaning up the object tree"
622	@echo "--------------------------------------------------------------"
623	${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR}
624.if defined(LIBCOMPAT)
625	${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} -f Makefile.inc1 ${CLEANDIR}
626.endif
627.endif
628_obj:
629	@echo
630	@echo "--------------------------------------------------------------"
631	@echo ">>> stage 2.2: rebuilding the object tree"
632	@echo "--------------------------------------------------------------"
633	${_+_}cd ${.CURDIR}; ${WMAKE} obj
634_build-tools:
635	@echo
636	@echo "--------------------------------------------------------------"
637	@echo ">>> stage 2.3: build tools"
638	@echo "--------------------------------------------------------------"
639	${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
640_cross-tools:
641	@echo
642	@echo "--------------------------------------------------------------"
643	@echo ">>> stage 3: cross tools"
644	@echo "--------------------------------------------------------------"
645	${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
646	${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
647_includes:
648	@echo
649	@echo "--------------------------------------------------------------"
650	@echo ">>> stage 4.1: building includes"
651	@echo "--------------------------------------------------------------"
652# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need
653# headers from default SUBDIR.  Do SUBDIR_OVERRIDE includes last.
654	${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \
655	    MK_INCLUDES=yes includes
656.if !empty(SUBDIR_OVERRIDE) && make(buildworld)
657	${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes
658.endif
659_libraries:
660	@echo
661	@echo "--------------------------------------------------------------"
662	@echo ">>> stage 4.2: building libraries"
663	@echo "--------------------------------------------------------------"
664	${_+_}cd ${.CURDIR}; \
665	    ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
666	    MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} libraries
667everything:
668	@echo
669	@echo "--------------------------------------------------------------"
670	@echo ">>> stage 4.3: building everything"
671	@echo "--------------------------------------------------------------"
672	${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all
673
674WMAKE_TGTS=
675WMAKE_TGTS+=	_worldtmp _legacy
676.if empty(SUBDIR_OVERRIDE)
677WMAKE_TGTS+=	_bootstrap-tools
678.endif
679WMAKE_TGTS+=	_cleanobj _obj _build-tools _cross-tools
680WMAKE_TGTS+=	_includes _libraries
681WMAKE_TGTS+=	everything
682.if defined(LIBCOMPAT) && empty(SUBDIR_OVERRIDE)
683WMAKE_TGTS+=	build${libcompat}
684.endif
685
686buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
687.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
688
689buildworld_prologue: .PHONY
690	@echo "--------------------------------------------------------------"
691	@echo ">>> World build started on `LC_ALL=C date`"
692	@echo "--------------------------------------------------------------"
693
694buildworld_epilogue: .PHONY
695	@echo
696	@echo "--------------------------------------------------------------"
697	@echo ">>> World build completed on `LC_ALL=C date`"
698	@echo "--------------------------------------------------------------"
699
700#
701# We need to have this as a target because the indirection between Makefile
702# and Makefile.inc1 causes the correct PATH to be used, rather than a
703# modification of the current environment's PATH.  In addition, we need
704# to quote multiword values.
705#
706buildenvvars: .PHONY
707	@echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@}
708
709.if ${.TARGETS:Mbuildenv}
710.if ${.MAKEFLAGS:M-j}
711.error The buildenv target is incompatible with -j
712.endif
713.endif
714BUILDENV_DIR?=	${.CURDIR}
715buildenv: .PHONY
716	@echo Entering world for ${TARGET_ARCH}:${TARGET}
717.if ${BUILDENV_SHELL:M*zsh*}
718	@echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE}
719.endif
720	@cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \
721	    || true
722
723TOOLCHAIN_TGTS=	${WMAKE_TGTS:Neverything:Nbuild${libcompat}}
724toolchain: ${TOOLCHAIN_TGTS}
725kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
726
727#
728# installcheck
729#
730# Checks to be sure system is ready for installworld/installkernel.
731#
732installcheck: _installcheck_world _installcheck_kernel
733_installcheck_world:
734_installcheck_kernel:
735
736#
737# Require DESTDIR to be set if installing for a different architecture or
738# using the user/group database in the source tree.
739#
740.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
741    defined(DB_FROM_SRC)
742.if !make(distributeworld)
743_installcheck_world: __installcheck_DESTDIR
744_installcheck_kernel: __installcheck_DESTDIR
745__installcheck_DESTDIR:
746.if !defined(DESTDIR) || empty(DESTDIR)
747	@echo "ERROR: Please set DESTDIR!"; \
748	false
749.endif
750.endif
751.endif
752
753.if !defined(DB_FROM_SRC)
754#
755# Check for missing UIDs/GIDs.
756#
757CHECK_UIDS=	auditdistd
758CHECK_GIDS=	audit
759.if ${MK_SENDMAIL} != "no"
760CHECK_UIDS+=	smmsp
761CHECK_GIDS+=	smmsp
762.endif
763.if ${MK_PF} != "no"
764CHECK_UIDS+=	proxy
765CHECK_GIDS+=	proxy authpf
766.endif
767.if ${MK_UNBOUND} != "no"
768CHECK_UIDS+=	unbound
769CHECK_GIDS+=	unbound
770.endif
771_installcheck_world: __installcheck_UGID
772__installcheck_UGID:
773.for uid in ${CHECK_UIDS}
774	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
775		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
776		false; \
777	fi
778.endfor
779.for gid in ${CHECK_GIDS}
780	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
781		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
782		false; \
783	fi
784.endfor
785.endif
786
787#
788# Required install tools to be saved in a scratch dir for safety.
789#
790.if ${MK_ZONEINFO} != "no"
791_zoneinfo=	zic tzsetup
792.endif
793
794ITOOLS=	[ awk cap_mkdb cat chflags chmod chown cmp cp \
795	date echo egrep find grep id install ${_install-info} \
796	ln make mkdir mtree mv pwd_mkdb \
797	rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \
798	${LOCAL_ITOOLS}
799
800# Needed for share/man
801.if ${MK_MAN} != "no"
802ITOOLS+=makewhatis
803.endif
804
805#
806# distributeworld
807#
808# Distributes everything compiled by a `buildworld'.
809#
810# installworld
811#
812# Installs everything compiled by a 'buildworld'.
813#
814
815# Non-base distributions produced by the base system
816EXTRA_DISTRIBUTIONS=	doc
817.if defined(LIBCOMPAT)
818EXTRA_DISTRIBUTIONS+=	lib${libcompat}
819.endif
820.if ${MK_TESTS} != "no"
821EXTRA_DISTRIBUTIONS+=	tests
822.endif
823
824DEBUG_DISTRIBUTIONS=
825.if ${MK_DEBUG_FILES} != "no"
826DEBUG_DISTRIBUTIONS+=	base ${EXTRA_DISTRIBUTIONS:S,doc,,:S,tests,,}
827.endif
828
829MTREE_MAGIC?=	mtree 2.0
830
831distributeworld installworld stageworld: _installcheck_world
832	mkdir -p ${INSTALLTMP}
833	progs=$$(for prog in ${ITOOLS}; do \
834		if progpath=`which $$prog`; then \
835			echo $$progpath; \
836		else \
837			echo "Required tool $$prog not found in PATH." >&2; \
838			exit 1; \
839		fi; \
840	    done); \
841	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
842	    while read line; do \
843		set -- $$line; \
844		if [ "$$2 $$3" != "not found" ]; then \
845			echo $$2; \
846		else \
847			echo "Required library $$1 not found." >&2; \
848			exit 1; \
849		fi; \
850	    done); \
851	cp $$libs $$progs ${INSTALLTMP}
852	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
853.if defined(NO_ROOT)
854	-mkdir -p ${METALOG:H}
855	echo "#${MTREE_MAGIC}" > ${METALOG}
856.endif
857.if make(distributeworld)
858.for dist in ${EXTRA_DISTRIBUTIONS}
859	-mkdir ${DESTDIR}/${DISTDIR}/${dist}
860	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
861	    -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
862	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
863	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
864	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
865	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
866.if ${MK_DEBUG_FILES} != "no"
867	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
868	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
869.endif
870.if defined(LIBCOMPAT)
871	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
872	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
873.if ${MK_DEBUG_FILES} != "no"
874	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
875	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null
876.endif
877.endif
878.if ${MK_TESTS} != "no" && ${dist} == "tests"
879	-mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
880	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
881	    -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
882.if ${MK_DEBUG_FILES} != "no"
883	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
884	    -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null
885.endif
886.endif
887.if defined(NO_ROOT)
888	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
889	    sed -e 's#^\./#./${dist}/#' >> ${METALOG}
890	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
891	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
892	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
893	    sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
894.if defined(LIBCOMPAT)
895	${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \
896	    sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
897.endif
898.endif
899.endfor
900	-mkdir ${DESTDIR}/${DISTDIR}/base
901	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
902	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
903	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
904	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
905.endif
906	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
907	    ${IMAKEENV} rm -rf ${INSTALLTMP}
908.if make(distributeworld)
909.for dist in ${EXTRA_DISTRIBUTIONS}
910	find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -empty -delete
911.endfor
912.if defined(NO_ROOT)
913.for dist in base ${EXTRA_DISTRIBUTIONS}
914	@# For each file that exists in this dist, print the corresponding
915	@# line from the METALOG.  This relies on the fact that
916	@# a line containing only the filename will sort immediatly before
917	@# the relevant mtree line.
918	cd ${DESTDIR}/${DISTDIR}; \
919	find ./${dist} | sort -u ${METALOG} - | \
920	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
921	${DESTDIR}/${DISTDIR}/${dist}.meta
922.endfor
923.for dist in ${DEBUG_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 immediatly before
927	@# the relevant mtree line.
928	cd ${DESTDIR}/${DISTDIR}; \
929	find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
930	awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
931	${DESTDIR}/${DISTDIR}/${dist}.debug.meta
932.endfor
933.endif
934.endif
935
936packageworld:
937.for dist in base ${EXTRA_DISTRIBUTIONS}
938.if defined(NO_ROOT)
939	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
940	    tar cvf - --exclude usr/lib/debug \
941	    @${DESTDIR}/${DISTDIR}/${dist}.meta | \
942	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
943.else
944	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
945	    tar cvf - --exclude usr/lib/debug . | \
946	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
947.endif
948.endfor
949
950.for dist in ${DEBUG_DISTRIBUTIONS}
951. if defined(NO_ROOT)
952	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
953	    tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
954	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
955. else
956	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
957	    tar cvLf - usr/lib/debug | \
958	    ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz
959. endif
960.endfor
961
962#
963# reinstall
964#
965# If you have a build server, you can NFS mount the source and obj directories
966# and do a 'make reinstall' on the *client* to install new binaries from the
967# most recent server build.
968#
969reinstall: .MAKE .PHONY
970	@echo "--------------------------------------------------------------"
971	@echo ">>> Making hierarchy"
972	@echo "--------------------------------------------------------------"
973	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
974	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
975	@echo
976	@echo "--------------------------------------------------------------"
977	@echo ">>> Installing everything"
978	@echo "--------------------------------------------------------------"
979	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
980.if defined(LIBCOMPAT)
981	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
982.endif
983
984restage: .MAKE .PHONY
985	@echo "--------------------------------------------------------------"
986	@echo ">>> Making hierarchy"
987	@echo "--------------------------------------------------------------"
988	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
989	    LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy distribution
990	@echo
991	@echo "--------------------------------------------------------------"
992	@echo ">>> Installing everything"
993	@echo "--------------------------------------------------------------"
994	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
995.if defined(LIB32TMP) && ${MK_LIB32} != "no"
996	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
997.endif
998
999redistribute: .MAKE .PHONY
1000	@echo "--------------------------------------------------------------"
1001	@echo ">>> Distributing everything"
1002	@echo "--------------------------------------------------------------"
1003	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
1004.if defined(LIBCOMPAT)
1005	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \
1006	    DISTRIBUTION=lib${libcompat}
1007.endif
1008
1009distrib-dirs distribution: .MAKE .PHONY
1010	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1011	    ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
1012.if make(distribution)
1013	${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \
1014		${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \
1015		METALOG=${METALOG} MK_TESTS=no installconfig
1016.endif
1017
1018#
1019# buildkernel and installkernel
1020#
1021# Which kernels to build and/or install is specified by setting
1022# KERNCONF. If not defined a GENERIC kernel is built/installed.
1023# Only the existing (depending TARGET) config files are used
1024# for building kernels and only the first of these is designated
1025# as the one being installed.
1026#
1027# Note that we have to use TARGET instead of TARGET_ARCH when
1028# we're in kernel-land. Since only TARGET_ARCH is (expected) to
1029# be set to cross-build, we have to make sure TARGET is set
1030# properly.
1031
1032.if defined(KERNFAST)
1033NO_KERNELCLEAN=	t
1034NO_KERNELCONFIG=	t
1035NO_KERNELOBJ=		t
1036# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
1037.if !defined(KERNCONF) && ${KERNFAST} != "1"
1038KERNCONF=${KERNFAST}
1039.endif
1040.endif
1041.if ${TARGET_ARCH} == "powerpc64"
1042KERNCONF?=	GENERIC64
1043.else
1044KERNCONF?=	GENERIC
1045.endif
1046INSTKERNNAME?=	kernel
1047
1048KERNSRCDIR?=	${.CURDIR}/sys
1049KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
1050KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
1051KERNCONFDIR?=	${KRNLCONFDIR}
1052
1053BUILDKERNELS=
1054INSTALLKERNEL=
1055.if defined(NO_INSTALLKERNEL)
1056# All of the BUILDKERNELS loops start at index 1.
1057BUILDKERNELS+= dummy
1058.endif
1059.for _kernel in ${KERNCONF}
1060.if exists(${KERNCONFDIR}/${_kernel})
1061BUILDKERNELS+=	${_kernel}
1062.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1063INSTALLKERNEL= ${_kernel}
1064.endif
1065.endif
1066.endfor
1067
1068${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1069
1070#
1071# buildkernel
1072#
1073# Builds all kernels defined by BUILDKERNELS.
1074#
1075buildkernel: .MAKE .PHONY
1076.if empty(BUILDKERNELS:Ndummy)
1077	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1078	false
1079.endif
1080	@echo
1081.for _kernel in ${BUILDKERNELS:Ndummy}
1082	@echo "--------------------------------------------------------------"
1083	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1084	@echo "--------------------------------------------------------------"
1085	@echo "===> ${_kernel}"
1086	mkdir -p ${KRNLOBJDIR}
1087.if !defined(NO_KERNELCONFIG)
1088	@echo
1089	@echo "--------------------------------------------------------------"
1090	@echo ">>> stage 1: configuring the kernel"
1091	@echo "--------------------------------------------------------------"
1092	cd ${KRNLCONFDIR}; \
1093		PATH=${TMPPATH} \
1094		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1095			-I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1096.endif
1097.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1098	@echo
1099	@echo "--------------------------------------------------------------"
1100	@echo ">>> stage 2.1: cleaning up the object tree"
1101	@echo "--------------------------------------------------------------"
1102	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1103.endif
1104.if !defined(NO_KERNELOBJ)
1105	@echo
1106	@echo "--------------------------------------------------------------"
1107	@echo ">>> stage 2.2: rebuilding the object tree"
1108	@echo "--------------------------------------------------------------"
1109	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1110.endif
1111	@echo
1112	@echo "--------------------------------------------------------------"
1113	@echo ">>> stage 2.3: build tools"
1114	@echo "--------------------------------------------------------------"
1115	${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1116	@echo
1117	@echo "--------------------------------------------------------------"
1118	@echo ">>> stage 3.1: building everything"
1119	@echo "--------------------------------------------------------------"
1120	${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1121	@echo "--------------------------------------------------------------"
1122	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1123	@echo "--------------------------------------------------------------"
1124.endfor
1125
1126#
1127# installkernel, etc.
1128#
1129# Install the kernel defined by INSTALLKERNEL
1130#
1131installkernel installkernel.debug \
1132reinstallkernel reinstallkernel.debug: _installcheck_kernel
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 && !defined(NO_INSTALLEXTRAKERNELS)
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:
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 && !defined(NO_INSTALLEXTRAKERNELS)
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:
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 && !defined(NO_INSTALLEXTRAKERNELS)
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 && !defined(NO_INSTALLEXTRAKERNELS)
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:
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:
1255.if !exists(${LOCALBASE}/sbin/pkg)
1256	@env ASSUME_ALWAYS_YES=YES pkg bootstrap
1257.endif
1258
1259packages:
1260	${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} real-packages
1261
1262package-pkg:
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
1269
1270stage-packages:
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
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
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
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 && !defined(NO_INSTALLEXTRAKERNELS)
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
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:
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:
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:
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:
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:
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:
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:
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:
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:
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
2274	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
2275
2276check-old: check-old-files check-old-libs check-old-dirs
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:
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:
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
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
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
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:
2475	@echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2476.endif
2477