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