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