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