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