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