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