]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
MFH
[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:       _pkgbootstrap
1378         @mkdir -p ${WSTAGEDIR} ${KSTAGEDIR} ${REPODIR}
1379         ${_+_}@cd ${.CURDIR}; \
1380                 ${MAKE} DESTDIR=${DESTDIR:U${WSTAGEDIR}} -DNO_ROOT -B stageworld ; \
1381                 ${MAKE} DESTDIR=${DESTDIR:U${KSTAGEDIR}} -DNO_ROOT -B stagekernel ; \
1382                 ${MAKE} DESTDIR=${DESTDIR:U${WSTAGEDIR}} \
1383                         PKG_VERSION=${PKG_VERSION} create-world-packages ; \
1384                 ${MAKE} DESTDIR=${DESTDIR:U${KSTAGEDIR}} \
1385                         PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \
1386                         create-kernel-packages
1387
1388 create-world-packages:  _pkgbootstrap
1389         @rm -f ${DESTDIR}/*.plist 2>/dev/null || :
1390         @cd ${DESTDIR} ; \
1391                 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1392                 ${DESTDIR}/METALOG
1393         @for plist in ${DESTDIR}/*.plist; do \
1394                 plist=$${plist##*/} ; \
1395                 pkgname=$${plist%.plist} ; \
1396                 sh ${SRCDIR}/release/packages/generate-ucl.sh -o $${pkgname} \
1397                         -s ${SRCDIR} -u ${DESTDIR}/$${pkgname}.ucl ; \
1398         done
1399         @for plist in ${DESTDIR}/*.plist; do \
1400                 plist=$${plist##*/} ; \
1401                 pkgname=$${plist%.plist} ; \
1402                 awk -F\" ' \
1403                         /^name/ { printf("===> Creating %s-", $$2); next } \
1404                         /^version/ { print $$2; next } \
1405                         ' ${DESTDIR}/$${pkgname}.ucl ; \
1406                 pkg -o ABI_FILE=${DESTDIR}/bin/sh \
1407                         create -M ${DESTDIR}/$${pkgname}.ucl \
1408                         -p ${DESTDIR}/$${pkgname}.plist \
1409                         -r ${DESTDIR} \
1410                         -o ${REPODIR}/$$(pkg -o ABI_FILE=${DESTDIR}/bin/sh config ABI)/latest ; \
1411         done
1412
1413 create-kernel-packages: _pkgbootstrap
1414 .if exists(${DESTDIR}/kernel.meta)
1415 .for flavor in release debug
1416         @cd ${DESTDIR}/${DISTDIR} ; \
1417         awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1418                 -v kernel=yes \
1419                 ${DESTDIR}/kernel.meta ; \
1420         cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1421         pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1422         sed -e "s/%VERSION%/${PKG_VERSION}/" \
1423                 -e "s/%PKGNAME%/kernel-${flavor}/" \
1424                 -e "s/%COMMENT%/FreeBSD ${INSTKERNNAME} kernel ${flavor}/" \
1425                 -e "s/%DESC%/FreeBSD ${INSTKERNNAME} kernel ${flavor}/" \
1426                 -e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1427                 -e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1428                 ${SRCDIR}/release/packages/kernel.ucl \
1429                 > ${DESTDIR}/${DISTDIR}/kernel-${flavor}.ucl ; \
1430         awk -F\" ' \
1431                 /name/ { printf("===> Creating %s-", $$2); next } \
1432                 /version/ {print $$2; next } ' \
1433                 ${DESTDIR}/${DISTDIR}/kernel-${flavor}.ucl ; \
1434         pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh \
1435                 create -M ${DESTDIR}/${DISTDIR}/kernel-${flavor}.ucl \
1436                 -p ${DESTDIR}/${DISTDIR}/kernel-${flavor}.plist \
1437                 -r ${DESTDIR}/${DISTDIR} \
1438                 -o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest
1439 .endfor
1440 .endif
1441 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1442 .for _kernel in ${BUILDKERNELS:[2..-1]}
1443 .if exists(${DESTDIR}/kernel.${_kernel}.meta)
1444 .for flavor in release debug
1445         @cd ${DESTDIR}/kernel.${_kernel} ; \
1446         awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \
1447                 -v kernel=yes -v _kernconf=${_kernel} \
1448                 ${DESTDIR}/kernel.${_kernel}.meta ; \
1449         cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
1450         pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
1451         sed -e "s/%VERSION%/${PKG_VERSION}/" \
1452                 -e "s/%PKGNAME%/kernel-${_kernel:tl}-${flavor}/" \
1453                 -e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \
1454                 -e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \
1455                 -e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
1456                 -e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
1457                 ${SRCDIR}/release/packages/kernel.ucl \
1458                 > ${DESTDIR}/kernel.${_kernel}/kernel.${_kernel}-${flavor}.ucl ; \
1459         awk -F\" ' \
1460                 /name/ { printf("===> Creating %s-", $$2); next } \
1461                 /version/ {print $$2; next } ' \
1462                 ${DESTDIR}/kernel.${_kernel}/kernel.${_kernel}-${flavor}.ucl ; \
1463         pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh \
1464                 create -M ${DESTDIR}/kernel.${_kernel}/kernel.${_kernel}-${flavor}.ucl \
1465                 -p ${DESTDIR}/kernel.${_kernel}/kernel.${_kernel}-${flavor}.plist \
1466                 -r ${DESTDIR}/kernel.${_kernel} \
1467                 -o ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI)/latest
1468 .endfor
1469 .endif
1470 .endfor
1471 .endif
1472
1473 signpackages:   _pkgbootstrap
1474         @pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh repo ${REPODIR}/$$(pkg -o ABI_FILE=${WSTAGEDIR}/bin/sh config ABI) ${PKGSIGNKEY}
1475
1476 #
1477 #
1478 # checkworld
1479 #
1480 # Run test suite on installed world.
1481 #
1482 checkworld: .PHONY
1483         @if [ ! -x ${LOCALBASE}/bin/kyua ]; then \
1484                 echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
1485                 exit 1; \
1486         fi
1487         ${_+_}${LOCALBASE}/bin/kyua test -k ${TESTSBASE}/Kyuafile
1488
1489 #
1490 #
1491 # doxygen
1492 #
1493 # Build the API documentation with doxygen
1494 #
1495 doxygen: .PHONY
1496         @if [ ! -x ${LOCALBASE}/bin/doxygen ]; then \
1497                 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1498                 exit 1; \
1499         fi
1500         ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1501
1502 #
1503 # update
1504 #
1505 # Update the source tree(s), by running svn/svnup to update to the
1506 # latest copy.
1507 #
1508 update:
1509 .if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE)
1510         @echo "--------------------------------------------------------------"
1511         @echo "CVS_UPDATE and SUP_UPDATE are no longer supported."
1512         @echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated"
1513         @echo "--------------------------------------------------------------"
1514         @exit 1
1515 .endif
1516 .if defined(SVN_UPDATE)
1517         @echo "--------------------------------------------------------------"
1518         @echo ">>> Updating ${.CURDIR} using Subversion"
1519         @echo "--------------------------------------------------------------"
1520         @(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
1521 .endif
1522
1523 #
1524 # ------------------------------------------------------------------------
1525 #
1526 # From here onwards are utility targets used by the 'make world' and
1527 # related targets.  If your 'world' breaks, you may like to try to fix
1528 # the problem and manually run the following targets to attempt to
1529 # complete the build.  Beware, this is *not* guaranteed to work, you
1530 # need to have a pretty good grip on the current state of the system
1531 # to attempt to manually finish it.  If in doubt, 'make world' again.
1532 #
1533
1534 #
1535 # legacy: Build compatibility shims for the next three targets. This is a
1536 # minimal set of tools and shims necessary to compensate for older systems
1537 # which don't have the APIs required by the targets built in bootstrap-tools,
1538 # build-tools or cross-tools.
1539 #
1540
1541 # ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
1542 .if ${BOOTSTRAPPING} < 1100006
1543 _elftoolchain_libs= lib/libelf lib/libdwarf
1544 .endif
1545
1546 legacy:
1547 .if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0
1548         @echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \
1549         false
1550 .endif
1551 .for _tool in tools/build ${_elftoolchain_libs}
1552         ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
1553             cd ${.CURDIR}/${_tool}; \
1554             ${MAKE} DIRPRFX=${_tool}/ obj; \
1555             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1556             ${MAKE} DIRPRFX=${_tool}/ depend; \
1557             ${MAKE} DIRPRFX=${_tool}/ all; \
1558             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1559 .endfor
1560
1561 #
1562 # bootstrap-tools: Build tools needed for compatibility. These are binaries that
1563 # are built to build other binaries in the system. However, the focus of these
1564 # binaries is usually quite narrow. Bootstrap tools use the host's compiler and
1565 # libraries, augmented by -legacy.
1566 #
1567 _bt=            _bootstrap-tools
1568
1569 .if ${MK_GAMES} != "no"
1570 _strfile=       usr.bin/fortune/strfile
1571 .endif
1572
1573 .if ${MK_GCC} != "no" && ${MK_CXX} != "no"
1574 _gperf=         gnu/usr.bin/gperf
1575 .endif
1576
1577 .if ${MK_GROFF} != "no"
1578 _groff=         gnu/usr.bin/groff \
1579                 usr.bin/soelim
1580 .endif
1581
1582 .if ${MK_VT} != "no"
1583 _vtfontcvt=     usr.bin/vtfontcvt
1584 .endif
1585
1586 .if ${BOOTSTRAPPING} < 900002
1587 _sed=           usr.bin/sed
1588 .endif
1589
1590 .if ${BOOTSTRAPPING} < 1000033
1591 _libopenbsd=    lib/libopenbsd
1592 _m4=            usr.bin/m4
1593 _lex=           usr.bin/lex
1594
1595 ${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd
1596 ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1597 .endif
1598
1599 .if ${BOOTSTRAPPING} < 1000026
1600 _nmtree=        lib/libnetbsd \
1601                 usr.sbin/nmtree
1602
1603 ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1604 .endif
1605
1606 .if ${BOOTSTRAPPING} < 1000027
1607 _cat=           bin/cat
1608 .endif
1609
1610 # r277259 crunchide: Correct 64-bit section header offset
1611 # r281674 crunchide: always include both 32- and 64-bit ELF support
1612 # r285986 crunchen: use STRIPBIN rather than STRIP
1613 .if ${BOOTSTRAPPING} < 1100078
1614 _crunch=        usr.sbin/crunch
1615 .endif
1616
1617 .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1618 _awk=           usr.bin/awk
1619 .endif
1620
1621 _yacc=          lib/liby \
1622                 usr.bin/yacc
1623
1624 ${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1625
1626 .if ${MK_BSNMP} != "no"
1627 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
1628 .endif
1629
1630 # We need to build tblgen when we're building clang either as
1631 # the bootstrap compiler, or as the part of the normal build.
1632 .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no"
1633 _clang_tblgen= \
1634         lib/clang/libllvmsupport \
1635         lib/clang/libllvmtablegen \
1636         usr.bin/clang/tblgen \
1637         usr.bin/clang/clang-tblgen
1638
1639 ${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1640 ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1641 .endif
1642
1643 # Default to building the GPL DTC, but build the BSDL one if users explicitly
1644 # request it.
1645 _dtc= usr.bin/dtc
1646 .if ${MK_GPL_DTC} != "no"
1647 _dtc= gnu/usr.bin/dtc
1648 .endif
1649
1650 .if ${MK_KERBEROS} != "no"
1651 _kerberos5_bootstrap_tools= \
1652         kerberos5/tools/make-roken \
1653         kerberos5/lib/libroken \
1654         kerberos5/lib/libvers \
1655         kerberos5/tools/asn1_compile \
1656         kerberos5/tools/slc \
1657         usr.bin/compile_et
1658
1659 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1660 .endif
1661
1662 .if ${MK_MANDOCDB} != "no"
1663 _libopenbsd?=   lib/libopenbsd
1664 _makewhatis=    lib/libsqlite3 \
1665                 usr.bin/mandoc
1666 ${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd ${_bt}-lib/libsqlite3
1667 .else
1668 _makewhatis=usr.bin/makewhatis
1669 .endif
1670
1671 bootstrap-tools: .PHONY
1672
1673 #       Please document (add comment) why something is in 'bootstrap-tools'.
1674 #       Try to bound the building of the bootstrap-tool to just the
1675 #       FreeBSD versions that need the tool built at this stage of the build.
1676 .for _tool in \
1677     ${_clang_tblgen} \
1678     ${_kerberos5_bootstrap_tools} \
1679     ${_strfile} \
1680     ${_gperf} \
1681     ${_groff} \
1682     ${_dtc} \
1683     ${_awk} \
1684     ${_cat} \
1685     usr.bin/lorder \
1686     ${_libopenbsd} \
1687     ${_makewhatis} \
1688     usr.bin/rpcgen \
1689     ${_sed} \
1690     ${_yacc} \
1691     ${_m4} \
1692     ${_lex} \
1693     usr.bin/xinstall \
1694     ${_gensnmptree} \
1695     usr.sbin/config \
1696     ${_crunch} \
1697     ${_nmtree} \
1698     ${_vtfontcvt} \
1699     usr.bin/localedef
1700 ${_bt}-${_tool}: .PHONY .MAKE
1701         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1702                 cd ${.CURDIR}/${_tool}; \
1703                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1704                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1705                 ${MAKE} DIRPRFX=${_tool}/ all; \
1706                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1707
1708 bootstrap-tools: ${_bt}-${_tool}
1709 .endfor
1710
1711 #
1712 # build-tools: Build special purpose build tools
1713 #
1714 .if !defined(NO_SHARE)
1715 _share= share/syscons/scrnmaps
1716 .endif
1717
1718 .if ${MK_GCC} != "no"
1719 _gcc_tools= gnu/usr.bin/cc/cc_tools
1720 .endif
1721
1722 .if ${MK_RESCUE} != "no"
1723 # rescue includes programs that have build-tools targets
1724 _rescue=rescue/rescue
1725 .endif
1726
1727 .for _tool in \
1728     bin/csh \
1729     bin/sh \
1730     ${LOCAL_TOOL_DIRS} \
1731     lib/ncurses/ncurses \
1732     lib/ncurses/ncursesw \
1733     ${_rescue} \
1734     ${_share} \
1735     usr.bin/awk \
1736     lib/libmagic \
1737     usr.bin/mkesdb_static \
1738     usr.bin/mkcsmapper_static \
1739     usr.bin/vi/catalog
1740 build-tools_${_tool}: .PHONY
1741         ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1742                 cd ${.CURDIR}/${_tool}; \
1743                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1744                 ${MAKE} DIRPRFX=${_tool}/ build-tools
1745 build-tools: build-tools_${_tool}
1746 .endfor
1747 .for _tool in \
1748     ${_gcc_tools}
1749 build-tools_${_tool}: .PHONY
1750         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1751                 cd ${.CURDIR}/${_tool}; \
1752                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1753                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1754                 ${MAKE} DIRPRFX=${_tool}/ all
1755 build-tools: build-tools_${_tool}
1756 .endfor
1757
1758 #
1759 # kernel-tools: Build kernel-building tools
1760 #
1761 kernel-tools:
1762         mkdir -p ${MAKEOBJDIRPREFIX}/usr
1763         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1764             -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1765
1766 #
1767 # cross-tools: All the tools needed to build the rest of the system after
1768 # we get done with the earlier stages. It is the last set of tools needed
1769 # to begin building the target binaries.
1770 #
1771 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1772 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1773 _btxld=         usr.sbin/btxld
1774 .endif
1775 .endif
1776
1777 # Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures
1778 # resulting from missing bug fixes or ELF Toolchain updates.
1779 .if ${MK_CDDL} != "no"
1780 _dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \
1781     cddl/usr.bin/ctfmerge
1782 .endif
1783
1784 # If we're given an XAS, don't build binutils.
1785 .if ${XAS:M/*} == ""
1786 .if ${MK_BINUTILS_BOOTSTRAP} != "no"
1787 _binutils=      gnu/usr.bin/binutils
1788 .endif
1789 .if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1790 _elftctools=    lib/libelftc \
1791                 usr.bin/elfcopy \
1792                 usr.bin/nm \
1793                 usr.bin/size \
1794                 usr.bin/strings
1795 # These are not required by the build, but can be useful for developers who
1796 # cross-build on a FreeBSD 10 host:
1797 _elftctools+=   usr.bin/addr2line
1798 .endif
1799 .elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
1800 # If cross-building with an external binutils we still need to build strip for
1801 # the target (for at least crunchide).
1802 _elftctools=    lib/libelftc \
1803                 usr.bin/elfcopy
1804 .endif
1805
1806 # If an full path to an external cross compiler is given, don't build
1807 # a cross compiler.
1808 .if ${XCC:N${CCACHE_BIN}:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1809 .if ${MK_CLANG_BOOTSTRAP} != "no"
1810 _clang=         usr.bin/clang
1811 _clang_libs=    lib/clang
1812 .endif
1813 .if ${MK_GCC_BOOTSTRAP} != "no"
1814 _cc=            gnu/usr.bin/cc
1815 .endif
1816 .endif
1817 .if ${MK_USB} != "no"
1818 _usb_tools=     sys/boot/usb/tools
1819 .endif
1820
1821 cross-tools: .MAKE .PHONY
1822 .for _tool in \
1823     ${_clang_libs} \
1824     ${_clang} \
1825     ${_binutils} \
1826     ${_elftctools} \
1827     ${_dtrace_tools} \
1828     ${_cc} \
1829     ${_btxld} \
1830     ${_crunchide} \
1831     ${_usb_tools}
1832         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1833                 cd ${.CURDIR}/${_tool}; \
1834                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1835                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1836                 ${MAKE} DIRPRFX=${_tool}/ all; \
1837                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1838 .endfor
1839
1840 NXBDESTDIR=     ${OBJTREE}/nxb-bin
1841 NXBENV=         MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1842                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
1843                 PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin
1844 NXBMAKE=        ${NXBENV} ${MAKE} \
1845                 TBLGEN=${NXBDESTDIR}/usr/bin/tblgen \
1846                 CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \
1847                 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1848                 MK_GDB=no MK_TESTS=no \
1849                 SSP_CFLAGS= \
1850                 MK_HTML=no NO_LINT=yes MK_MAN=no \
1851                 -DNO_PIC MK_PROFILE=no -DNO_SHARED \
1852                 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
1853                 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
1854                 MK_LLDB=no MK_DEBUG_FILES=no
1855
1856 # native-xtools is the current target for qemu-user cross builds of ports
1857 # via poudriere and the imgact_binmisc kernel module.
1858 # For non-clang enabled targets that are still using the in tree gcc
1859 # we must build a gperf binary for one instance of its Makefiles.  On
1860 # clang-enabled systems, the gperf binary is obsolete.
1861 native-xtools: .PHONY
1862 .if ${MK_GCC_BOOTSTRAP} != "no"
1863         mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin
1864         ${_+_}@${ECHODIR} "===> ${_gperf} (obj,depend,all,install)"; \
1865         cd ${.CURDIR}/${_gperf}; \
1866         ${NXBMAKE} DIRPRFX=${_gperf}/ obj; \
1867         ${NXBMAKE} DIRPRFX=${_gperf}/ depend; \
1868         ${NXBMAKE} DIRPRFX=${_gperf}/ all; \
1869         ${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install
1870 .endif
1871         mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr
1872         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1873             -p ${NXBDESTDIR}/usr >/dev/null
1874         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1875             -p ${NXBDESTDIR}/usr/include >/dev/null
1876 .if ${MK_DEBUG_FILES} != "no"
1877         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
1878             -p ${NXBDESTDIR}/usr/lib >/dev/null
1879 .endif
1880 .for _tool in \
1881     bin/cat \
1882     bin/chmod \
1883     bin/cp \
1884     bin/csh \
1885     bin/echo \
1886     bin/expr \
1887     bin/hostname \
1888     bin/ln \
1889     bin/ls \
1890     bin/mkdir \
1891     bin/mv \
1892     bin/ps \
1893     bin/realpath \
1894     bin/rm \
1895     bin/rmdir \
1896     bin/sh \
1897     bin/sleep \
1898     ${_clang_tblgen} \
1899     usr.bin/ar \
1900     ${_binutils} \
1901     ${_elftctools} \
1902     ${_cc} \
1903     ${_gcc_tools} \
1904     ${_clang_libs} \
1905     ${_clang} \
1906     sbin/md5 \
1907     sbin/sysctl \
1908     gnu/usr.bin/diff \
1909     usr.bin/awk \
1910     usr.bin/basename \
1911     usr.bin/bmake \
1912     usr.bin/bzip2 \
1913     usr.bin/cmp \
1914     usr.bin/dirname \
1915     usr.bin/env \
1916     usr.bin/fetch \
1917     usr.bin/find \
1918     usr.bin/grep \
1919     usr.bin/gzip \
1920     usr.bin/id \
1921     usr.bin/lex \
1922     usr.bin/lorder \
1923     usr.bin/mktemp \
1924     usr.bin/mt \
1925     usr.bin/patch \
1926     usr.bin/sed \
1927     usr.bin/sort \
1928     usr.bin/tar \
1929     usr.bin/touch \
1930     usr.bin/tr \
1931     usr.bin/true \
1932     usr.bin/uniq \
1933     usr.bin/unzip \
1934     usr.bin/xargs \
1935     usr.bin/xinstall \
1936     usr.bin/xz \
1937     usr.bin/yacc \
1938     usr.sbin/chown
1939         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1940                 cd ${.CURDIR}/${_tool}; \
1941                 ${NXBMAKE} DIRPRFX=${_tool}/ obj; \
1942                 ${NXBMAKE} DIRPRFX=${_tool}/ depend; \
1943                 ${NXBMAKE} DIRPRFX=${_tool}/ all; \
1944                 ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${NXBDESTDIR} install
1945 .endfor
1946
1947 #
1948 # hierarchy - ensure that all the needed directories are present
1949 #
1950 hierarchy hier: .MAKE .PHONY
1951         ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
1952
1953 #
1954 # libraries - build all libraries, and install them under ${DESTDIR}.
1955 #
1956 # The list of libraries with dependents (${_prebuild_libs}) and their
1957 # interdependencies (__L) are built automatically by the
1958 # ${.CURDIR}/tools/make_libdeps.sh script.
1959 #
1960 libraries: .MAKE .PHONY
1961         ${_+_}cd ${.CURDIR}; \
1962             ${MAKE} -f Makefile.inc1 _prereq_libs; \
1963             ${MAKE} -f Makefile.inc1 _startup_libs; \
1964             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1965             ${MAKE} -f Makefile.inc1 _generic_libs
1966
1967 #
1968 # static libgcc.a prerequisite for shared libc
1969 #
1970 _prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1971
1972 # These dependencies are not automatically generated:
1973 #
1974 # gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1975 # all shared libraries for ELF.
1976 #
1977 _startup_libs=  gnu/lib/csu
1978 _startup_libs+= lib/csu
1979 _startup_libs+= gnu/lib/libgcc
1980 _startup_libs+= lib/libcompiler_rt
1981 _startup_libs+= lib/libc
1982 _startup_libs+= lib/libc_nonshared
1983 .if ${MK_LIBCPLUSPLUS} != "no"
1984 _startup_libs+= lib/libcxxrt
1985 .endif
1986
1987 gnu/lib/libgcc__L: lib/libc__L
1988 gnu/lib/libgcc__L: lib/libc_nonshared__L
1989 .if ${MK_LIBCPLUSPLUS} != "no"
1990 lib/libcxxrt__L: gnu/lib/libgcc__L
1991 .endif
1992
1993 _prebuild_libs= ${_kerberos5_lib_libasn1} \
1994                 ${_kerberos5_lib_libhdb} \
1995                 ${_kerberos5_lib_libheimbase} \
1996                 ${_kerberos5_lib_libheimntlm} \
1997                 ${_libsqlite3} \
1998                 ${_kerberos5_lib_libheimipcc} \
1999                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
2000                 ${_kerberos5_lib_libroken} \
2001                 ${_kerberos5_lib_libwind} \
2002                 lib/libbz2 ${_libcom_err} lib/libcrypt \
2003                 lib/libelf lib/libexpat \
2004                 lib/libfigpar \
2005                 ${_lib_libgssapi} \
2006                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \
2007                 ${_lib_libcapsicum} \
2008                 lib/ncurses/ncurses lib/ncurses/ncursesw \
2009                 lib/libopie lib/libpam ${_lib_libthr} \
2010                 ${_lib_libradius} lib/libsbuf lib/libtacplus \
2011                 lib/libgeom \
2012                 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
2013                 ${_cddl_lib_libuutil} \
2014                 ${_cddl_lib_libavl} \
2015                 ${_cddl_lib_libzfs_core} \
2016                 ${_cddl_lib_libctf} \
2017                 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \
2018                 ${_secure_lib_libcrypto} ${_lib_libldns} \
2019                 ${_secure_lib_libssh} ${_secure_lib_libssl} \
2020                 gnu/lib/libdialog
2021 .if ${MK_GNUCXX} != "no"
2022 _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
2023 gnu/lib/libstdc++__L: lib/msun__L
2024 gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
2025 .endif
2026
2027 .if ${MK_LIBCPLUSPLUS} != "no"
2028 _prebuild_libs+= lib/libc++
2029 .endif
2030
2031 lib/libgeom__L: lib/libexpat__L
2032 lib/libkvm__L: lib/libelf__L
2033
2034 .if ${MK_LIBTHR} != "no"
2035 _lib_libthr=    lib/libthr
2036 .endif
2037
2038 .if ${MK_RADIUS_SUPPORT} != "no"
2039 _lib_libradius= lib/libradius
2040 .endif
2041
2042 .if ${MK_OFED} != "no"
2043 _ofed_lib=      contrib/ofed/usr.lib/
2044 .endif
2045
2046 .if ${MK_CASPER} != "no"
2047 _lib_libcapsicum=lib/libcapsicum
2048 .endif
2049
2050 lib/libcapsicum__L: lib/libnv__L
2051 lib/libpjdlog__L: lib/libutil__L
2052 lib/liblzma__L: lib/libthr__L
2053
2054 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
2055 .for _DIR in ${LOCAL_LIB_DIRS}
2056 .if exists(${.CURDIR}/${_DIR}/Makefile)
2057 _generic_libs+= ${_DIR}
2058 .endif
2059 .endfor
2060
2061 lib/libopie__L lib/libtacplus__L: lib/libmd__L
2062
2063 .if ${MK_CDDL} != "no"
2064 _cddl_lib_libumem= cddl/lib/libumem
2065 _cddl_lib_libnvpair= cddl/lib/libnvpair
2066 _cddl_lib_libavl= cddl/lib/libavl
2067 _cddl_lib_libuutil= cddl/lib/libuutil
2068 _cddl_lib_libzfs_core= cddl/lib/libzfs_core
2069 _cddl_lib_libctf= cddl/lib/libctf
2070 _cddl_lib= cddl/lib
2071 cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
2072 cddl/lib/libzfs__L: lib/libgeom__L
2073 cddl/lib/libctf__L: lib/libz__L
2074 .endif
2075 # cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built
2076 # on select architectures though (see cddl/lib/Makefile)
2077 .if ${MACHINE_CPUARCH} != "sparc64"
2078 _prebuild_libs+=        lib/libproc lib/librtld_db
2079 .endif
2080
2081 .if ${MK_CRYPT} != "no"
2082 .if ${MK_OPENSSL} != "no"
2083 _secure_lib_libcrypto= secure/lib/libcrypto
2084 _secure_lib_libssl= secure/lib/libssl
2085 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
2086 .if ${MK_LDNS} != "no"
2087 _lib_libldns= lib/libldns
2088 lib/libldns__L: secure/lib/libcrypto__L
2089 .endif
2090 .if ${MK_OPENSSH} != "no"
2091 _secure_lib_libssh= secure/lib/libssh
2092 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
2093 .if ${MK_LDNS} != "no"
2094 secure/lib/libssh__L: lib/libldns__L
2095 .endif
2096 .if ${MK_KERBEROS_SUPPORT} != "no"
2097 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
2098     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
2099     lib/libmd__L kerberos5/lib/libroken__L
2100 .endif
2101 .endif
2102 .endif
2103 _secure_lib=    secure/lib
2104 .endif
2105
2106 .if ${MK_KERBEROS} != "no"
2107 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
2108 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2109     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
2110     kerberos5/lib/libwind__L lib/libsqlite3__L
2111 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
2112     kerberos5/lib/libroken__L lib/libcom_err__L
2113 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2114     secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
2115 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
2116     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
2117     kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
2118     kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
2119 kerberos5/lib/libroken__L: lib/libcrypt__L
2120 kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
2121 kerberos5/lib/libheimbase__L: lib/libthr__L
2122 kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
2123 .endif
2124
2125 lib/libsqlite3__L: lib/libthr__L
2126
2127 .if ${MK_GSSAPI} != "no"
2128 _lib_libgssapi= lib/libgssapi
2129 .endif
2130
2131 .if ${MK_KERBEROS} != "no"
2132 _kerberos5_lib= kerberos5/lib
2133 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
2134 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
2135 _kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
2136 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
2137 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
2138 _kerberos5_lib_libroken= kerberos5/lib/libroken
2139 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
2140 _libsqlite3= lib/libsqlite3
2141 _kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
2142 _kerberos5_lib_libwind= kerberos5/lib/libwind
2143 _libcom_err= lib/libcom_err
2144 .endif
2145
2146 .if ${MK_NIS} != "no"
2147 _lib_libypclnt= lib/libypclnt
2148 .endif
2149
2150 .if ${MK_OPENSSL} == "no"
2151 lib/libradius__L: lib/libmd__L
2152 .endif
2153
2154 lib/libproc__L: \
2155     ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
2156 .if ${MK_CXX} != "no"
2157 .if ${MK_LIBCPLUSPLUS} != "no"
2158 lib/libproc__L: lib/libcxxrt__L
2159 .else # This implies MK_GNUCXX != "no"; see lib/libproc
2160 lib/libproc__L: gnu/lib/libsupc++__L
2161 .endif
2162 .endif
2163
2164 gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
2165
2166 .for _lib in ${_prereq_libs}
2167 ${_lib}__PL: .PHONY .MAKE
2168 .if exists(${.CURDIR}/${_lib})
2169         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
2170                 cd ${.CURDIR}/${_lib}; \
2171                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2172                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend; \
2173                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2174                     DIRPRFX=${_lib}/ all; \
2175                 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \
2176                     DIRPRFX=${_lib}/ install
2177 .endif
2178 .endfor
2179
2180 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
2181 ${_lib}__L: .PHONY .MAKE
2182 .if exists(${.CURDIR}/${_lib})
2183         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
2184                 cd ${.CURDIR}/${_lib}; \
2185                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; \
2186                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend; \
2187                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \
2188                 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install
2189 .endif
2190 .endfor
2191
2192 # libpam is special: we need to build static PAM modules before
2193 # static PAM library, and dynamic PAM library before dynamic PAM
2194 # modules.
2195 lib/libpam__L: .PHONY .MAKE
2196         ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
2197                 cd ${.CURDIR}/lib/libpam; \
2198                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ obj; \
2199                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ depend; \
2200                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
2201                     -D_NO_LIBPAM_SO_YET all; \
2202                 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \
2203                     -D_NO_LIBPAM_SO_YET install
2204
2205 _prereq_libs: ${_prereq_libs:S/$/__PL/}
2206 _startup_libs: ${_startup_libs:S/$/__L/}
2207 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
2208 _generic_libs: ${_generic_libs:S/$/__L/}
2209
2210 # Enable SUBDIR_PARALLEL when not calling 'make all', unless called from
2211 # 'everything' with _PARALLEL_SUBDIR_OK set.  This is because it is unlikely
2212 # that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE
2213 # or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in
2214 # parallel.  This is safe for the world stage of buildworld though since it has
2215 # already built libraries in a proper order and installed includes into
2216 # WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to
2217 # avoid trashing a system if it crashes mid-install.
2218 .if !make(all) || defined(_PARALLEL_SUBDIR_OK)
2219 SUBDIR_PARALLEL=
2220 .endif
2221
2222 .include <bsd.subdir.mk>
2223
2224 .if make(check-old) || make(check-old-dirs) || \
2225     make(check-old-files) || make(check-old-libs) || \
2226     make(delete-old) || make(delete-old-dirs) || \
2227     make(delete-old-files) || make(delete-old-libs)
2228
2229 #
2230 # check for / delete old files section
2231 #
2232
2233 .include "ObsoleteFiles.inc"
2234
2235 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
2236 else you can not start such an application. Consult UPDATING for more \
2237 information regarding how to cope with the removal/revision bump of a \
2238 specific library."
2239
2240 .if !defined(BATCH_DELETE_OLD_FILES)
2241 RM_I=-i
2242 .else
2243 RM_I=-v
2244 .endif
2245
2246 delete-old-files:
2247         @echo ">>> Removing old files (only deletes safe to delete libs)"
2248 # Ask for every old file if the user really wants to remove it.
2249 # It's annoying, but better safe than sorry.
2250 # NB: We cannot pass the list of OLD_FILES as a parameter because the
2251 # argument list will get too long. Using .for/.endfor make "loops" will make
2252 # the Makefile parser segfault.
2253         @exec 3<&0; \
2254         cd ${.CURDIR}; \
2255         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2256             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2257         while read file; do \
2258                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2259                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2260                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2261                 fi; \
2262                 for ext in debug symbols; do \
2263                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2264                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2265                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2266                               <&3; \
2267                   fi; \
2268                 done; \
2269         done
2270 # Remove catpages without corresponding manpages.
2271         @exec 3<&0; \
2272         find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2273         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2274         while read catpage; do \
2275                 read manpage; \
2276                 if [ ! -e "$${manpage}" ]; then \
2277                         rm ${RM_I} $${catpage} <&3; \
2278                 fi; \
2279         done
2280         @echo ">>> Old files removed"
2281
2282 check-old-files:
2283         @echo ">>> Checking for old files"
2284         @cd ${.CURDIR}; \
2285         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2286             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
2287         while read file; do \
2288                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2289                         echo "${DESTDIR}/$${file}"; \
2290                 fi; \
2291                 for ext in debug symbols; do \
2292                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2293                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2294                   fi; \
2295                 done; \
2296         done
2297 # Check for catpages without corresponding manpages.
2298         @find ${DESTDIR}/usr/share/man/cat* ! -type d | \
2299         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
2300         while read catpage; do \
2301                 read manpage; \
2302                 if [ ! -e "$${manpage}" ]; then \
2303                         echo $${catpage}; \
2304                 fi; \
2305         done
2306
2307 delete-old-libs:
2308         @echo ">>> Removing old libraries"
2309         @echo "${OLD_LIBS_MESSAGE}" | fmt
2310         @exec 3<&0; \
2311         cd ${.CURDIR}; \
2312         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2313             -V OLD_LIBS | xargs -n1 | \
2314         while read file; do \
2315                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2316                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
2317                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
2318                 fi; \
2319                 for ext in debug symbols; do \
2320                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
2321                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2322                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
2323                               <&3; \
2324                   fi; \
2325                 done; \
2326         done
2327         @echo ">>> Old libraries removed"
2328
2329 check-old-libs:
2330         @echo ">>> Checking for old libraries"
2331         @cd ${.CURDIR}; \
2332         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2333             -V OLD_LIBS | xargs -n1 | \
2334         while read file; do \
2335                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2336                         echo "${DESTDIR}/$${file}"; \
2337                 fi; \
2338                 for ext in debug symbols; do \
2339                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2340                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2341                   fi; \
2342                 done; \
2343         done
2344
2345 delete-old-dirs:
2346         @echo ">>> Removing old directories"
2347         @cd ${.CURDIR}; \
2348         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2349             -V OLD_DIRS | xargs -n1 | sort -r | \
2350         while read dir; do \
2351                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2352                         rmdir -v "${DESTDIR}/$${dir}" || true; \
2353                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2354                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2355                 fi; \
2356         done
2357         @echo ">>> Old directories removed"
2358
2359 check-old-dirs:
2360         @echo ">>> Checking for old directories"
2361         @cd ${.CURDIR}; \
2362         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2363             -V OLD_DIRS | xargs -n1 | \
2364         while read dir; do \
2365                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2366                         echo "${DESTDIR}/$${dir}"; \
2367                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2368                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2369                 fi; \
2370         done
2371
2372 delete-old: delete-old-files delete-old-dirs
2373         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2374
2375 check-old: check-old-files check-old-libs check-old-dirs
2376         @echo "To remove old files and directories run '${MAKE} delete-old'."
2377         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2378
2379 .endif
2380
2381 #
2382 # showconfig - show build configuration.
2383 #
2384 showconfig:
2385         @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1; \
2386           ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1) 2>&1 | grep ^MK_ | sort -u
2387
2388 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2389 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2390
2391 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2392 .if exists(${KERNCONFDIR}/${KERNCONF})
2393 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2394         '${KERNCONFDIR}/${KERNCONF}' ; echo
2395 .endif
2396 .endif
2397
2398 .endif
2399
2400 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2401 DTBOUTPUTPATH= ${.CURDIR}
2402 .endif
2403
2404 #
2405 # Build 'standalone' Device Tree Blob
2406 #
2407 builddtb:
2408         @PATH=${TMPPATH} MACHINE=${TARGET} \
2409         ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2410             "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2411
2412 ###############
2413
2414 # cleanworld
2415 # In the following, the first 'rm' in a series will usually remove all
2416 # files and directories.  If it does not, then there are probably some
2417 # files with file flags set, so this unsets them and tries the 'rm' a
2418 # second time.  There are situations where this target will be cleaning
2419 # some directories via more than one method, but that duplication is
2420 # needed to correctly handle all the possible situations.  Removing all
2421 # files without file flags set in the first 'rm' instance saves time,
2422 # because 'chflags' will need to operate on fewer files afterwards.
2423 #
2424 # It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
2425 # created by bsd.obj.mk, except that we don't want to .include that file
2426 # in this makefile.
2427 #
2428 BW_CANONICALOBJDIR:=${OBJTREE}${.CURDIR}
2429 cleanworld: .PHONY
2430 .if exists(${BW_CANONICALOBJDIR}/)
2431         -rm -rf ${BW_CANONICALOBJDIR}/*
2432         -chflags -R 0 ${BW_CANONICALOBJDIR}
2433         rm -rf ${BW_CANONICALOBJDIR}/*
2434 .endif
2435 .if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
2436         #   To be safe in this case, fall back to a 'make cleandir'
2437         ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir
2438 .endif
2439
2440 .if defined(TARGET) && defined(TARGET_ARCH)
2441
2442 .if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH}
2443 XDEV_CPUTYPE?=${CPUTYPE}
2444 .else
2445 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2446 .endif
2447
2448 NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \
2449         MK_MAN=no MK_NLS=no MK_PROFILE=no \
2450         MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \
2451         TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
2452         CPUTYPE=${XDEV_CPUTYPE}
2453
2454 XDDIR=${TARGET_ARCH}-freebsd
2455 XDTP?=/usr/${XDDIR}
2456 .if ${XDTP:N/*}
2457 .error XDTP variable should be an absolute path
2458 .endif
2459
2460 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2461         INSTALL="sh ${.CURDIR}/tools/install.sh"
2462 CDENV= ${CDBENV} \
2463         TOOLS_PREFIX=${XDTP}
2464 CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2465         --sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2466         -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2467 CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2468         CPP="${CPP} ${CD2CFLAGS}" \
2469         MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}
2470
2471 CDTMP=  ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2472 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2473 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2474 XDDESTDIR=${DESTDIR}/${XDTP}
2475 .if !defined(OSREL)
2476 OSREL!= uname -r | sed -e 's/[-(].*//'
2477 .endif
2478
2479 .ORDER: xdev-build xdev-install xdev-links
2480 xdev: xdev-build xdev-install
2481
2482 .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2483 xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2484
2485 _xb-worldtmp: .PHONY
2486         mkdir -p ${CDTMP}/usr
2487         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2488             -p ${CDTMP}/usr >/dev/null
2489
2490 _xb-bootstrap-tools: .PHONY
2491 .for _tool in \
2492     ${_clang_tblgen} \
2493     ${_gperf}
2494         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
2495         cd ${.CURDIR}/${_tool}; \
2496         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2497         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2498         ${CDMAKE} DIRPRFX=${_tool}/ all; \
2499         ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2500 .endfor
2501
2502 _xb-build-tools: .PHONY
2503         ${_+_}@cd ${.CURDIR}; \
2504         ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2505
2506 _xb-cross-tools: .PHONY
2507 .for _tool in \
2508     ${_binutils} \
2509     ${_elftctools} \
2510     usr.bin/ar \
2511     ${_clang_libs} \
2512     ${_clang} \
2513     ${_cc}
2514         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
2515         cd ${.CURDIR}/${_tool}; \
2516         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2517         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2518         ${CDMAKE} DIRPRFX=${_tool}/ all
2519 .endfor
2520
2521 _xi-mtree: .PHONY
2522         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2523         mkdir -p ${XDDESTDIR}
2524         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2525             -p ${XDDESTDIR} >/dev/null
2526         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2527             -p ${XDDESTDIR}/usr >/dev/null
2528         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2529             -p ${XDDESTDIR}/usr/include >/dev/null
2530 .if ${MK_LIB32} != "no"
2531         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \
2532             -p ${XDDESTDIR}/usr >/dev/null
2533 .endif
2534 .if ${MK_TESTS} != "no"
2535         mkdir -p ${XDDESTDIR}${TESTSBASE}
2536         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2537             -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2538 .endif
2539
2540 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2541 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries
2542
2543 _xi-cross-tools: .PHONY
2544         @echo "_xi-cross-tools"
2545 .for _tool in \
2546     ${_binutils} \
2547     ${_elftctools} \
2548     usr.bin/ar \
2549     ${_clang_libs} \
2550     ${_clang} \
2551     ${_cc}
2552         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2553         cd ${.CURDIR}/${_tool}; \
2554         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2555 .endfor
2556
2557 _xi-includes: .PHONY
2558         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \
2559                 DESTDIR=${XDDESTDIR}
2560
2561 _xi-libraries: .PHONY
2562         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2563                 DESTDIR=${XDDESTDIR}
2564
2565 xdev-links: .PHONY
2566         ${_+_}cd ${XDDESTDIR}/usr/bin; \
2567         mkdir -p ../../../../usr/bin; \
2568                 for i in *; do \
2569                         ln -sf ../../${XDTP}/usr/bin/$$i \
2570                             ../../../../usr/bin/${XDDIR}-$$i; \
2571                         ln -sf ../../${XDTP}/usr/bin/$$i \
2572                             ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2573                 done
2574 .else
2575 xdev xdev-build xdev-install xdev-links:
2576         @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target"
2577 .endif