]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile
Add built-in ccache build support via WITH_CCACHE_BUILD option.
[FreeBSD/FreeBSD.git] / Makefile
1 #
2 # $FreeBSD$
3 #
4 # The user-driven targets are:
5 #
6 # universe            - *Really* build *everything* (buildworld and
7 #                       all kernels on all architectures).
8 # tinderbox           - Same as universe, but presents a list of failed build
9 #                       targets and exits with an error if there were any.
10 # buildworld          - Rebuild *everything*, including glue to help do
11 #                       upgrades.
12 # installworld        - Install everything built by "buildworld".
13 # world               - buildworld + installworld, no kernel.
14 # buildkernel         - Rebuild the kernel and the kernel-modules.
15 # installkernel       - Install the kernel and the kernel-modules.
16 # installkernel.debug
17 # reinstallkernel     - Reinstall the kernel and the kernel-modules.
18 # reinstallkernel.debug
19 # kernel              - buildkernel + installkernel.
20 # kernel-toolchain    - Builds the subset of world necessary to build a kernel
21 # kernel-toolchains   - Build kernel-toolchain for all universe targets.
22 # doxygen             - Build API documentation of the kernel, needs doxygen.
23 # update              - Convenient way to update your source tree(s).
24 # check-old           - List obsolete directories/files/libraries.
25 # check-old-dirs      - List obsolete directories.
26 # check-old-files     - List obsolete files.
27 # check-old-libs      - List obsolete libraries.
28 # delete-old          - Delete obsolete directories/files.
29 # delete-old-dirs     - Delete obsolete directories.
30 # delete-old-files    - Delete obsolete files.
31 # delete-old-libs     - Delete obsolete libraries.
32 # targets             - Print a list of supported TARGET/TARGET_ARCH pairs
33 #                       for world and kernel targets.
34 # toolchains          - Build a toolchain for all world and kernel targets.
35 # xdev                - xdev-build + xdev-install for the architecture
36 #                       specified with XDEV and XDEV_ARCH.
37 # xdev-build          - Build cross-development tools.
38 # xdev-install        - Install cross-development tools.
39 # xdev-links          - Create traditional links in /usr/bin for cc, etc
40 # native-xtools       - Create host binaries that produce target objects
41 #                       for use in qemu user-mode jails.
42
43 # "quick" way to test all kernel builds:
44 #       _jflag=`sysctl -n hw.ncpu`
45 #       _jflag=$(($_jflag * 2))
46 #       [ $_jflag -gt 12 ] && _jflag=12
47 #       make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
48 #
49 # This makefile is simple by design. The FreeBSD make automatically reads
50 # the /usr/share/mk/sys.mk unless the -m argument is specified on the
51 # command line. By keeping this makefile simple, it doesn't matter too
52 # much how different the installed mk files are from those in the source
53 # tree. This makefile executes a child make process, forcing it to use
54 # the mk files from the source tree which are supposed to DTRT.
55 #
56 # Most of the user-driven targets (as listed above) are implemented in
57 # Makefile.inc1.  The exceptions are universe, tinderbox and targets.
58 #
59 # If you want to build your system from source be sure that /usr/obj has
60 # at least 1GB of diskspace available.  A complete 'universe' build requires
61 # about 15GB of space.
62 #
63 # For individuals wanting to build from the sources currently on their
64 # system, the simple instructions are:
65 #
66 # 1.  `cd /usr/src'  (or to the directory containing your source tree).
67 # 2.  Define `HISTORICAL_MAKE_WORLD' variable (see README).
68 # 3.  `make world'
69 #
70 # For individuals wanting to upgrade their sources (even if only a
71 # delta of a few days):
72 #
73 #  1.  `cd /usr/src'       (or to the directory containing your source tree).
74 #  2.  `make buildworld'
75 #  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
76 #  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
77 #       [steps 3. & 4. can be combined by using the "kernel" target]
78 #  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
79 #  6.  `mergemaster -p'
80 #  7.  `make installworld'
81 #  8.  `mergemaster'            (you may wish to use -i, along with -U or -F).
82 #  9.  `make delete-old'
83 # 10.  `reboot'
84 # 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
85 #
86 # See src/UPDATING `COMMON ITEMS' for more complete information.
87 #
88 # If TARGET=machine (e.g. powerpc, sparc64, ...) is specified you can
89 # cross build world for other machine types using the buildworld target,
90 # and once the world is built you can cross build a kernel using the
91 # buildkernel target.
92 #
93 # Define the user-driven targets. These are listed here in alphabetical
94 # order, but that's not important.
95 #
96 # Targets that begin with underscore are internal targets intended for
97 # developer convenience only.  They are intentionally not documented and
98 # completely subject to change without notice.
99 #
100 # For more information, see the build(7) manual page.
101 #
102
103 # This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION
104 # can be cached for sub-makes.
105 .include <bsd.compiler.mk>
106
107 # Note: we use this awkward construct to be compatible with FreeBSD's
108 # old make used in 10.0 and 9.2 and earlier.
109 .if defined(MK_META_MODE) && ${MK_META_MODE} == "yes" && !make(showconfig)
110 # targets/Makefile plays the role of top-level
111 .include "targets/Makefile"
112 .else
113
114 TGTS=   all all-man buildenv buildenvvars buildkernel buildworld \
115         check-old check-old-dirs check-old-files check-old-libs \
116         checkdpadd clean cleandepend cleandir \
117         delete-old delete-old-dirs delete-old-files delete-old-libs \
118         depend distribute distributekernel distributekernel.debug \
119         distributeworld distrib-dirs distribution doxygen \
120         everything hier hierarchy install installcheck installkernel \
121         installkernel.debug packagekernel packageworld \
122         reinstallkernel reinstallkernel.debug \
123         installworld kernel-toolchain libraries lint maninstall \
124         obj objlink regress rerelease showconfig tags toolchain update \
125         _worldtmp _legacy _bootstrap-tools _cleanobj _obj \
126         _build-tools _cross-tools _includes _libraries _depend \
127         build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
128         xdev-links native-xtools installconfig \
129
130 TGTS+=  ${SUBDIR_TARGETS}
131
132 BITGTS= files includes
133 BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
134 TGTS+=  ${BITGTS}
135
136 .ORDER: buildworld installworld
137 .ORDER: buildworld distributeworld
138 .ORDER: buildworld buildkernel
139 .ORDER: buildkernel installkernel
140 .ORDER: buildkernel installkernel.debug
141 .ORDER: buildkernel reinstallkernel
142 .ORDER: buildkernel reinstallkernel.debug
143
144 PATH=   /sbin:/bin:/usr/sbin:/usr/bin
145 MAKEOBJDIRPREFIX?=      /usr/obj
146 _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
147     ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
148     -f /dev/null -V MAKEOBJDIRPREFIX dummy
149 .if !empty(_MAKEOBJDIRPREFIX)
150 .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
151         (in make.conf(5)) or command-line variable.
152 .endif
153
154 # We often need to use the tree's version of make to build it.
155 # Choices add to complexity though.
156 # We cannot blindly use a make which may not be the one we want
157 # so be exlicit - until all choice is removed.
158 WANT_MAKE=      bmake
159 MYMAKE=         ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
160 .if defined(.PARSEDIR)
161 HAVE_MAKE=      bmake
162 .else
163 HAVE_MAKE=      fmake
164 .endif
165 .if exists(${MYMAKE})
166 SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
167 .elif ${WANT_MAKE} != ${HAVE_MAKE}
168 # It may not exist yet but we may cause it to.
169 # In the case of fmake, upgrade_checks may cause a newer version to be built.
170 SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
171         -m ${.CURDIR}/share/mk
172 .else
173 SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
174 .endif
175
176 _MAKE=  PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
177
178 # Guess machine architecture from machine type, and vice versa.
179 .if !defined(TARGET_ARCH) && defined(TARGET)
180 _TARGET_ARCH=   ${TARGET:S/pc98/i386/:S/arm64/aarch64/}
181 .elif !defined(TARGET) && defined(TARGET_ARCH) && \
182     ${TARGET_ARCH} != ${MACHINE_ARCH}
183 _TARGET=                ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb|hf)?/arm/:C/aarch64/arm64/:C/powerpc64/powerpc/}
184 .endif
185 .if defined(TARGET) && !defined(_TARGET)
186 _TARGET=${TARGET}
187 .endif
188 .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
189 _TARGET_ARCH=${TARGET_ARCH}
190 .endif
191 # for historical compatibility for xdev targets
192 .if defined(XDEV)
193 _TARGET=        ${XDEV}
194 .endif
195 .if defined(XDEV_ARCH)
196 _TARGET_ARCH=   ${XDEV_ARCH}
197 .endif
198 # Otherwise, default to current machine type and architecture.
199 _TARGET?=       ${MACHINE}
200 _TARGET_ARCH?=  ${MACHINE_ARCH}
201
202 #
203 # Make sure we have an up-to-date make(1). Only world and buildworld
204 # should do this as those are the initial targets used for upgrades.
205 # The user can define ALWAYS_CHECK_MAKE to have this check performed
206 # for all targets.
207 #
208 .if defined(ALWAYS_CHECK_MAKE)
209 ${TGTS}: upgrade_checks
210 .else
211 buildworld: upgrade_checks
212 .endif
213
214 #
215 # This 'cleanworld' target is not included in TGTS, because it is not a
216 # recursive target.  All of the work for it is done right here.   It is
217 # expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
218 # created by bsd.obj.mk, except that we don't want to .include that file
219 # in this makefile.  
220 #
221 # In the following, the first 'rm' in a series will usually remove all
222 # files and directories.  If it does not, then there are probably some
223 # files with file flags set, so this unsets them and tries the 'rm' a
224 # second time.  There are situations where this target will be cleaning
225 # some directories via more than one method, but that duplication is
226 # needed to correctly handle all the possible situations.  Removing all
227 # files without file flags set in the first 'rm' instance saves time,
228 # because 'chflags' will need to operate on fewer files afterwards.
229 #
230 BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
231 cleanworld:
232 .if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
233 .if exists(${BW_CANONICALOBJDIR}/)
234         -rm -rf ${BW_CANONICALOBJDIR}/*
235         -chflags -R 0 ${BW_CANONICALOBJDIR}
236         rm -rf ${BW_CANONICALOBJDIR}/*
237 .endif
238         #   To be safe in this case, fall back to a 'make cleandir'
239         ${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
240 .else
241         -rm -rf ${.OBJDIR}/*
242         -chflags -R 0 ${.OBJDIR}
243         rm -rf ${.OBJDIR}/*
244 .endif
245
246 #
247 # Handle the user-driven targets, using the source relative mk files.
248 #
249
250 tinderbox toolchains kernel-toolchains: .MAKE
251 ${TGTS}: .PHONY .MAKE
252         ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
253
254 # The historic default "all" target creates files which may cause stale
255 # or (in the cross build case) unlinkable results. Fail with an error
256 # when no target is given. The users can explicitly specify "all"
257 # if they want the historic behavior.
258 .MAIN:  _guard
259
260 _guard: .PHONY
261         @echo
262         @echo "Explicit target required.  Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted.  See build(7)."
263         @echo
264         @false
265
266 STARTTIME!= LC_ALL=C date
267 CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
268 .if !empty(CHECK_TIME)
269 .error check your date/time: ${STARTTIME}
270 .endif
271
272 .if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
273 #
274 # world
275 #
276 # Attempt to rebuild and reinstall everything. This target is not to be
277 # used for upgrading an existing FreeBSD system, because the kernel is
278 # not included. One can argue that this target doesn't build everything
279 # then.
280 #
281 world: upgrade_checks
282         @echo "--------------------------------------------------------------"
283         @echo ">>> make world started on ${STARTTIME}"
284         @echo "--------------------------------------------------------------"
285 .if target(pre-world)
286         @echo
287         @echo "--------------------------------------------------------------"
288         @echo ">>> Making 'pre-world' target"
289         @echo "--------------------------------------------------------------"
290         ${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
291 .endif
292         ${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
293         ${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
294 .if target(post-world)
295         @echo
296         @echo "--------------------------------------------------------------"
297         @echo ">>> Making 'post-world' target"
298         @echo "--------------------------------------------------------------"
299         ${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
300 .endif
301         @echo
302         @echo "--------------------------------------------------------------"
303         @echo ">>> make world completed on `LC_ALL=C date`"
304         @echo "                   (started ${STARTTIME})"
305         @echo "--------------------------------------------------------------"
306 .else
307 world:
308         @echo "WARNING: make world will overwrite your existing FreeBSD"
309         @echo "installation without also building and installing a new"
310         @echo "kernel.  This can be dangerous.  Please read the handbook,"
311         @echo "'Rebuilding world', for how to upgrade your system."
312         @echo "Define DESTDIR to where you want to install FreeBSD,"
313         @echo "including /, to override this warning and proceed as usual."
314         @echo ""
315         @echo "Bailing out now..."
316         @false
317 .endif
318
319 #
320 # kernel
321 #
322 # Short hand for `make buildkernel installkernel'
323 #
324 kernel: buildkernel installkernel
325
326 #
327 # Perform a few tests to determine if the installed tools are adequate
328 # for building the world.
329 #
330 # Note: if we ever need to care about the version of bmake, simply testing
331 # MAKE_VERSION against a required version should suffice.
332 #
333 upgrade_checks:
334 .if ${HAVE_MAKE} != ${WANT_MAKE}
335         @(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
336 .endif
337
338 #
339 # Upgrade make(1) to the current version using the installed
340 # headers, libraries and tools.  Also, allow the location of
341 # the system bsdmake-like utility to be overridden.
342 #
343 MMAKEENV=       MAKEOBJDIRPREFIX=${MYMAKE:H} \
344                 DESTDIR= \
345                 INSTALL="sh ${.CURDIR}/tools/install.sh"
346 MMAKE=          ${MMAKEENV} ${MAKE} \
347                 -DNO_MAN -DNO_SHARED \
348                 -DNO_CPU_CFLAGS -DNO_WERROR \
349                 MK_TESTS=no \
350                 DESTDIR= PROGNAME=${MYMAKE:T}
351
352 bmake: .PHONY
353         @echo
354         @echo "--------------------------------------------------------------"
355         @echo ">>> Building an up-to-date ${.TARGET}(1)"
356         @echo "--------------------------------------------------------------"
357         ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
358                 ${MMAKE} obj && \
359                 ${MMAKE} depend && \
360                 ${MMAKE} all && \
361                 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
362
363 tinderbox toolchains kernel-toolchains: upgrade_checks
364
365 tinderbox:
366         @cd ${.CURDIR} && ${SUB_MAKE} DOING_TINDERBOX=YES universe
367
368 toolchains:
369         @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
370
371 kernel-toolchains:
372         @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
373
374 #
375 # universe
376 #
377 # Attempt to rebuild *everything* for all supported architectures,
378 # with a reasonable chance of success, regardless of how old your
379 # existing system is.
380 #
381 .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
382 TARGETS?=amd64 arm arm64 i386 mips pc98 powerpc sparc64
383 _UNIVERSE_TARGETS=      ${TARGETS}
384 TARGET_ARCHES_arm?=     arm armeb armv6 armv6hf
385 TARGET_ARCHES_arm64?=   aarch64
386 TARGET_ARCHES_mips?=    mipsel mips mips64el mips64 mipsn32
387 TARGET_ARCHES_powerpc?= powerpc powerpc64
388 TARGET_ARCHES_pc98?=    i386
389 .for target in ${TARGETS}
390 TARGET_ARCHES_${target}?= ${target}
391 .endfor
392
393 # XXX Add arm64 to universe only if we have an external binutils installed.
394 # It does not build with the in-tree linker.
395 .if !exists(/usr/local/aarch64-freebsd/bin/ld) && empty(${TARGETS})
396 _UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:Narm64}
397 universe: universe_arm64_skip
398 universe_epilogue: universe_arm64_skip
399 universe_arm64_skip: universe_prologue
400         @echo ">> arm64 skipped - install aarch64-binutils port or package to build"
401 .endif
402
403 .if defined(UNIVERSE_TARGET)
404 MAKE_JUST_WORLDS=       YES
405 .else
406 UNIVERSE_TARGET?=       buildworld
407 .endif
408 KERNSRCDIR?=            ${.CURDIR}/sys
409
410 targets:        .PHONY
411         @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
412 .for target in ${TARGETS}
413 .for target_arch in ${TARGET_ARCHES_${target}}
414         @echo "    ${target}/${target_arch}"
415 .endfor
416 .endfor
417
418 .if defined(DOING_TINDERBOX)
419 FAILFILE=${.CURDIR}/_.tinderbox.failed
420 MAKEFAIL=tee -a ${FAILFILE}
421 .else
422 MAKEFAIL=cat
423 .endif
424
425 universe_prologue:  upgrade_checks
426 universe: universe_prologue
427 universe_prologue:
428         @echo "--------------------------------------------------------------"
429         @echo ">>> make universe started on ${STARTTIME}"
430         @echo "--------------------------------------------------------------"
431 .if defined(DOING_TINDERBOX)
432         @rm -f ${FAILFILE}
433 .endif
434 .for target in ${_UNIVERSE_TARGETS}
435 universe: universe_${target}
436 universe_epilogue: universe_${target}
437 universe_${target}: universe_${target}_prologue
438 universe_${target}_prologue: universe_prologue
439         @echo ">> ${target} started on `LC_ALL=C date`"
440 universe_${target}_worlds:
441
442 .if !defined(MAKE_JUST_KERNELS)
443 universe_${target}_done: universe_${target}_worlds
444 .for target_arch in ${TARGET_ARCHES_${target}}
445 universe_${target}_worlds: universe_${target}_${target_arch}
446 universe_${target}_${target_arch}: universe_${target}_prologue .MAKE
447         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
448         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
449             ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
450             TARGET=${target} \
451             TARGET_ARCH=${target_arch} \
452             > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
453             (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
454             "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
455             ${MAKEFAIL}))
456         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
457 .endfor
458 .endif # !MAKE_JUST_KERNELS
459
460 .if !defined(MAKE_JUST_WORLDS)
461 universe_${target}_done: universe_${target}_kernels
462 universe_${target}_kernels: universe_${target}_worlds
463 universe_${target}_kernels: universe_${target}_prologue .MAKE
464 .if exists(${KERNSRCDIR}/${target}/conf/NOTES)
465         @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
466             ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
467             (echo "${target} 'make LINT' failed," \
468             "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
469 .endif
470         @cd ${.CURDIR} && ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
471             universe_kernels
472 .endif # !MAKE_JUST_WORLDS
473
474 # Tell the user the worlds and kernels have completed
475 universe_${target}: universe_${target}_done
476 universe_${target}_done:
477         @echo ">> ${target} completed on `LC_ALL=C date`"
478 .endfor
479 universe_kernels: universe_kernconfs
480 .if !defined(TARGET)
481 TARGET!=        uname -m
482 .endif
483 .if defined(MAKE_ALL_KERNELS)
484 _THINNER=cat
485 .else
486 _THINNER=xargs grep -L "^.NO_UNIVERSE" || true
487 .endif
488 KERNCONFS!=     cd ${KERNSRCDIR}/${TARGET}/conf && \
489                 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
490                 ! -name DEFAULTS ! -name NOTES | \
491                 ${_THINNER}
492 universe_kernconfs:
493 .for kernel in ${KERNCONFS}
494 TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
495         config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
496         grep -v WARNING: | cut -f 2
497 .if empty(TARGET_ARCH_${kernel})
498 .error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
499 .endif
500 universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
501 universe_kernconf_${TARGET}_${kernel}: .MAKE
502         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
503             ${SUB_MAKE} ${JFLAG} buildkernel \
504             TARGET=${TARGET} \
505             TARGET_ARCH=${TARGET_ARCH_${kernel}} \
506             KERNCONF=${kernel} \
507             > _.${TARGET}.${kernel} 2>&1 || \
508             (echo "${TARGET} ${kernel} kernel failed," \
509             "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
510 .endfor
511 universe: universe_epilogue
512 universe_epilogue:
513         @echo "--------------------------------------------------------------"
514         @echo ">>> make universe completed on `LC_ALL=C date`"
515         @echo "                      (started ${STARTTIME})"
516         @echo "--------------------------------------------------------------"
517 .if defined(DOING_TINDERBOX)
518         @if [ -e ${FAILFILE} ] ; then \
519                 echo "Tinderbox failed:" ;\
520                 cat ${FAILFILE} ;\
521                 exit 1 ;\
522         fi
523 .endif
524 .endif
525
526 buildLINT:
527         ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
528
529 .if defined(.PARSEDIR)
530 # This makefile does not run in meta mode
531 .MAKE.MODE= normal
532 # Normally the things we run from here don't either.
533 # Using -DWITH_META_FILES
534 # we can buildworld with meta files created which are useful 
535 # for debugging, but without any of the rest of a meta mode build.
536 MK_META_MODE= no
537 MK_STAGING= no
538 # tell meta.autodep.mk to not even think about updating anything.
539 UPDATE_DEPENDFILE= NO
540 .if !make(showconfig)
541 .export MK_META_MODE MK_STAGING UPDATE_DEPENDFILE
542 .endif
543
544 .if make(universe)
545 # we do not want a failure of one branch abort all.
546 MAKE_JOB_ERROR_TOKEN= no
547 .export MAKE_JOB_ERROR_TOKEN
548 .endif
549 .endif # bmake
550
551 .endif                          # META_MODE