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