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