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