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