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