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