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