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