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