]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - Makefile
MFC r368207,368607:
[FreeBSD/stable/10.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 # checkworld          - Run test suite on installed world.
25 # check-old           - List obsolete directories/files/libraries.
26 # check-old-dirs      - List obsolete directories.
27 # check-old-files     - List obsolete files.
28 # check-old-libs      - List obsolete libraries.
29 # delete-old          - Delete obsolete directories/files.
30 # delete-old-dirs     - Delete obsolete directories.
31 # delete-old-files    - Delete obsolete files.
32 # delete-old-libs     - Delete obsolete libraries.
33 # targets             - Print a list of supported TARGET/TARGET_ARCH pairs
34 #                       for world and kernel targets.
35 # toolchains          - Build a toolchain for all world and kernel targets.
36 # xdev                - xdev-build + xdev-install for the architecture
37 #                       specified with XDEV and XDEV_ARCH.
38 # xdev-build          - Build cross-development tools.
39 # xdev-install        - Install cross-development tools.
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. ia64, 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 TGTS=   all all-man buildenv buildenvvars buildkernel buildworld \
103         check check-old check-old-dirs check-old-files check-old-libs \
104         checkdpadd checkworld clean cleandepend cleandir \
105         delete-old delete-old-dirs delete-old-files delete-old-libs \
106         depend distribute distributekernel distributekernel.debug \
107         distributeworld distrib-dirs distribution doxygen \
108         everything hier hierarchy install installcheck installkernel \
109         installkernel.debug packagekernel packageworld \
110         reinstallkernel reinstallkernel.debug \
111         installworld kernel-toolchain libraries lint maninstall \
112         obj objlink rerelease showconfig tags toolchain update \
113         _worldtmp _legacy _bootstrap-tools _cleanobj _obj \
114         _build-tools _cross-tools _includes _libraries _depend \
115         build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
116         native-xtools \
117
118 TGTS+=  ${SUBDIR_TARGETS}
119
120 BITGTS= files includes
121 BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
122 TGTS+=  ${BITGTS}
123
124 .ORDER: buildworld installworld
125 .ORDER: buildworld distributeworld
126 .ORDER: buildworld buildkernel
127 .ORDER: installworld distribution
128 .ORDER: installworld installkernel
129 .ORDER: buildkernel installkernel
130 .ORDER: buildkernel installkernel.debug
131 .ORDER: buildkernel reinstallkernel
132 .ORDER: buildkernel reinstallkernel.debug
133
134 PATH=   /sbin:/bin:/usr/sbin:/usr/bin
135 MAKEOBJDIRPREFIX?=      /usr/obj
136 _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
137     ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
138     -f /dev/null -V MAKEOBJDIRPREFIX dummy
139 .if !empty(_MAKEOBJDIRPREFIX)
140 .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
141         (in make.conf(5)) or command-line variable.
142 .endif
143
144 # We often need to use the tree's version of make to build it.
145 # Choices add to complexity though.
146 # We cannot blindly use a make which may not be the one we want
147 # so be explicit - until all choice is removed.
148 .if !defined(WITHOUT_BMAKE)
149 WANT_MAKE=      bmake
150 .else
151 WANT_MAKE=      fmake
152 .endif
153 MYMAKE=         ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
154 .if defined(.PARSEDIR)
155 HAVE_MAKE=      bmake
156 .else
157 HAVE_MAKE=      fmake
158 .endif
159 .if defined(ALWAYS_BOOTSTRAP_MAKE) || \
160     ${HAVE_MAKE} != ${WANT_MAKE} || \
161     (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
162 NEED_MAKE_UPGRADE= t
163 .endif
164 .if exists(${MYMAKE})
165 SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
166 .elif defined(NEED_MAKE_UPGRADE) || ${WANT_MAKE} != "bmake"
167 # It may not exist yet but we may cause it to.
168 # In the case of fmake, upgrade_checks may cause a newer version to be built.
169 SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
170         -m ${.CURDIR}/share/mk
171 .else
172 SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
173 .endif
174
175 _MAKE=  PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
176
177 # Guess machine architecture from machine type, and vice versa.
178 .if !defined(TARGET_ARCH) && defined(TARGET)
179 _TARGET_ARCH=   ${TARGET:S/pc98/i386/}
180 .elif !defined(TARGET) && defined(TARGET_ARCH) && \
181     ${TARGET_ARCH} != ${MACHINE_ARCH}
182 _TARGET=                ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/}
183 .endif
184 # Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1
185 .if defined(TARGET) && defined(TARGET_ARCH) && \
186     ${TARGET} == "mips" && ${TARGET_ARCH:Mmips*eb}
187 _TARGET_ARCH=           ${TARGET_ARCH:C/eb$//}
188 .warning "TARGET_ARCH of ${TARGET_ARCH} is deprecated in favor of ${_TARGET_ARCH}"
189 .endif
190 .if defined(TARGET) && ${TARGET} == "mips" && defined(TARGET_BIG_ENDIAN)
191 .warning "TARGET_BIG_ENDIAN is no longer necessary for MIPS.  Big-endian is not the default."
192 .endif
193 # arm with TARGET_BIG_ENDIAN -> armeb
194 .if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN)
195 .warning "TARGET_ARCH of arm with TARGET_BIG_ENDIAN is deprecated.  use armeb"
196 _TARGET_ARCH=armeb
197 .endif
198 .if defined(TARGET) && !defined(_TARGET)
199 _TARGET=${TARGET}
200 .endif
201 .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
202 _TARGET_ARCH=${TARGET_ARCH}
203 .endif
204 # Otherwise, default to current machine type and architecture.
205 _TARGET?=       ${MACHINE}
206 _TARGET_ARCH?=  ${MACHINE_ARCH}
207
208 #
209 # Make sure we have an up-to-date make(1). Only world and buildworld
210 # should do this as those are the initial targets used for upgrades.
211 # The user can define ALWAYS_CHECK_MAKE to have this check performed
212 # for all targets.
213 #
214 .if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR)
215 ${TGTS}: upgrade_checks
216 .else
217 buildworld: upgrade_checks
218 .endif
219
220 #
221 # This 'cleanworld' target is not included in TGTS, because it is not a
222 # recursive target.  All of the work for it is done right here.   It is
223 # expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
224 # created by bsd.obj.mk, except that we don't want to .include that file
225 # in this makefile.  
226 #
227 # In the following, the first 'rm' in a series will usually remove all
228 # files and directories.  If it does not, then there are probably some
229 # files with file flags set, so this unsets them and tries the 'rm' a
230 # second time.  There are situations where this target will be cleaning
231 # some directories via more than one method, but that duplication is
232 # needed to correctly handle all the possible situations.  Removing all
233 # files without file flags set in the first 'rm' instance saves time,
234 # because 'chflags' will need to operate on fewer files afterwards.
235 #
236 BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
237 cleanworld:
238 .if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
239 .if exists(${BW_CANONICALOBJDIR}/)
240         -rm -rf ${BW_CANONICALOBJDIR}/*
241         -chflags -R 0 ${BW_CANONICALOBJDIR}
242         rm -rf ${BW_CANONICALOBJDIR}/*
243 .endif
244         #   To be safe in this case, fall back to a 'make cleandir'
245         ${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
246 .else
247         -rm -rf ${.OBJDIR}/*
248         -chflags -R 0 ${.OBJDIR}
249         rm -rf ${.OBJDIR}/*
250 .endif
251
252 #
253 # Handle the user-driven targets, using the source relative mk files.
254 #
255
256 .if !(!empty(.MAKEFLAGS:M-n) && ${.MAKEFLAGS:M-n} == "-n")
257 # skip this for -n to avoid changing previous behavior of 
258 # 'make -n buildworld' etc.  Using -n -n will run it.
259 ${TGTS}: .MAKE
260 tinderbox toolchains kernel-toolchains: .MAKE
261 .endif
262
263 ${TGTS}: .PHONY
264         ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
265
266 # The historic default "all" target creates files which may cause stale
267 # or (in the cross build case) unlinkable results. Fail with an error
268 # when no target is given. The users can explicitly specify "all"
269 # if they want the historic behavior.
270 .MAIN:  _guard
271
272 _guard:
273         @echo
274         @echo "Explicit target required (use \"all\" for historic behavior)"
275         @echo
276         @false
277
278 STARTTIME!= LC_ALL=C date
279 CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
280 .if !empty(CHECK_TIME)
281 .error check your date/time: ${STARTTIME}
282 .endif
283
284 .if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
285 #
286 # world
287 #
288 # Attempt to rebuild and reinstall everything. This target is not to be
289 # used for upgrading an existing FreeBSD system, because the kernel is
290 # not included. One can argue that this target doesn't build everything
291 # then.
292 #
293 world: upgrade_checks
294         @echo "--------------------------------------------------------------"
295         @echo ">>> make world started on ${STARTTIME}"
296         @echo "--------------------------------------------------------------"
297 .if target(pre-world)
298         @echo
299         @echo "--------------------------------------------------------------"
300         @echo ">>> Making 'pre-world' target"
301         @echo "--------------------------------------------------------------"
302         ${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
303 .endif
304         ${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
305         ${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
306 .if target(post-world)
307         @echo
308         @echo "--------------------------------------------------------------"
309         @echo ">>> Making 'post-world' target"
310         @echo "--------------------------------------------------------------"
311         ${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
312 .endif
313         @echo
314         @echo "--------------------------------------------------------------"
315         @echo ">>> make world completed on `LC_ALL=C date`"
316         @echo "                   (started ${STARTTIME})"
317         @echo "--------------------------------------------------------------"
318 .else
319 world:
320         @echo "WARNING: make world will overwrite your existing FreeBSD"
321         @echo "installation without also building and installing a new"
322         @echo "kernel.  This can be dangerous.  Please read the handbook,"
323         @echo "'Rebuilding world', for how to upgrade your system."
324         @echo "Define DESTDIR to where you want to install FreeBSD,"
325         @echo "including /, to override this warning and proceed as usual."
326         @echo ""
327         @echo "Bailing out now..."
328         @false
329 .endif
330
331 #
332 # kernel
333 #
334 # Short hand for `make buildkernel installkernel'
335 #
336 kernel: buildkernel installkernel
337
338 #
339 # Perform a few tests to determine if the installed tools are adequate
340 # for building the world.
341 #
342 upgrade_checks:
343 .if defined(NEED_MAKE_UPGRADE)
344         @${_+_}(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
345 .elif ${WANT_MAKE} == "fmake"
346         @if ! (cd ${.CURDIR}/tools/build/make_check && \
347             PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
348             PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
349         then \
350             (cd ${.CURDIR} && ${MAKE} make); \
351         fi
352 .endif
353
354 #
355 # Upgrade make(1) to the current version using the installed
356 # headers, libraries and tools.  Also, allow the location of
357 # the system bsdmake-like utility to be overridden.
358 #
359 MMAKEENV=       MAKEOBJDIRPREFIX=${MYMAKE:H} \
360                 DESTDIR= \
361                 INSTALL="sh ${.CURDIR}/tools/install.sh"
362 MMAKE=          ${MMAKEENV} ${MAKE} \
363                 -D_UPGRADING \
364                 -DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
365                 -DNO_CPU_CFLAGS -DNO_WERROR \
366                 DESTDIR= -DNO_TESTS PROGNAME=${MYMAKE:T}
367
368 make bmake: .PHONY
369         @echo
370         @echo "--------------------------------------------------------------"
371         @echo ">>> Building an up-to-date make(1)"
372         @echo "--------------------------------------------------------------"
373         ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
374                 ${MMAKE} obj; \
375                 ${MMAKE} depend; \
376                 ${MMAKE} all; \
377                 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
378
379 regress: .PHONY
380         @echo "'make regress' has been renamed 'make check'" | /usr/bin/fmt
381         @false
382
383 tinderbox toolchains kernel-toolchains: upgrade_checks
384
385 tinderbox:
386         @cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe
387
388 toolchains:
389         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
390
391 kernel-toolchains:
392         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
393
394 #
395 # universe
396 #
397 # Attempt to rebuild *everything* for all supported architectures,
398 # with a reasonable chance of success, regardless of how old your
399 # existing system is.
400 #
401 .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
402 TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64
403 TARGET_ARCHES_arm?=     arm armeb armv6
404 TARGET_ARCHES_mips?=    mipsel mips mips64el mips64 mipsn32
405 TARGET_ARCHES_powerpc?= powerpc powerpc64
406 TARGET_ARCHES_pc98?=    i386
407 .for target in ${TARGETS}
408 TARGET_ARCHES_${target}?= ${target}
409 .endfor
410
411 .if defined(UNIVERSE_TARGET)
412 MAKE_JUST_WORLDS=       YES
413 .else
414 UNIVERSE_TARGET?=       buildworld
415 .endif
416 KERNSRCDIR?=            ${.CURDIR}/sys
417
418 targets:
419         @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
420 .for target in ${TARGETS}
421 .for target_arch in ${TARGET_ARCHES_${target}}
422         @echo "    ${target}/${target_arch}"
423 .endfor
424 .endfor
425
426 .if defined(DOING_TINDERBOX)
427 FAILFILE=${.CURDIR}/_.tinderbox.failed
428 MAKEFAIL=tee -a ${FAILFILE}
429 .else
430 MAKEFAIL=cat
431 .endif
432
433 universe_prologue:  upgrade_checks
434 universe: universe_prologue
435 universe_prologue:
436         @echo "--------------------------------------------------------------"
437         @echo ">>> make universe started on ${STARTTIME}"
438         @echo "--------------------------------------------------------------"
439 .if defined(DOING_TINDERBOX)
440         @rm -f ${FAILFILE}
441 .endif
442 .for target in ${TARGETS}
443 universe: universe_${target}
444 universe_epilogue: universe_${target}
445 universe_${target}: universe_${target}_prologue
446 universe_${target}_prologue: universe_prologue
447         @echo ">> ${target} started on `LC_ALL=C date`"
448 .if !defined(MAKE_JUST_KERNELS)
449 .for target_arch in ${TARGET_ARCHES_${target}}
450 universe_${target}: universe_${target}_${target_arch}
451 universe_${target}_${target_arch}: universe_${target}_prologue .MAKE
452         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
453         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
454             ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
455             TARGET=${target} \
456             TARGET_ARCH=${target_arch} \
457             > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
458             (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
459             "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
460             ${MAKEFAIL}))
461         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
462 .endfor
463 .endif
464 .if !defined(MAKE_JUST_WORLDS)
465 # If we are building world and kernels wait for the required worlds to finish
466 .if !defined(MAKE_JUST_KERNELS)
467 .for target_arch in ${TARGET_ARCHES_${target}}
468 universe_${target}_kernels: universe_${target}_${target_arch}
469 .endfor
470 .endif
471 universe_${target}: universe_${target}_kernels
472 universe_${target}_kernels: universe_${target}_prologue .MAKE
473 .if exists(${KERNSRCDIR}/${target}/conf/NOTES)
474         @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
475             ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
476             (echo "${target} 'make LINT' failed," \
477             "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
478 .endif
479         @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
480             universe_kernels
481 .endif
482         @echo ">> ${target} completed on `LC_ALL=C date`"
483 .endfor
484 universe_kernels: universe_kernconfs
485 .if !defined(TARGET)
486 TARGET!=        uname -m
487 .endif
488 .if defined(MAKE_ALL_KERNELS)
489 _THINNER=cat
490 .else
491 _THINNER=xargs grep -L "^.NO_UNIVERSE" || true
492 .endif
493 KERNCONFS!=     cd ${KERNSRCDIR}/${TARGET}/conf && \
494                 find [[:upper:][:digit:]]*[[:upper:][:digit:]] \
495                 -type f -maxdepth 0 \
496                 ! -name DEFAULTS ! -name NOTES | \
497                 ${_THINNER}
498 universe_kernconfs:
499 .for kernel in ${KERNCONFS}
500 TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
501         config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
502         grep -v WARNING: | cut -f 2
503 .if empty(TARGET_ARCH_${kernel})
504 .error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
505 .endif
506 universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
507 universe_kernconf_${TARGET}_${kernel}: .MAKE
508         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
509             ${SUB_MAKE} ${JFLAG} buildkernel \
510             TARGET=${TARGET} \
511             TARGET_ARCH=${TARGET_ARCH_${kernel}} \
512             KERNCONF=${kernel} \
513             > _.${TARGET}.${kernel} 2>&1 || \
514             (echo "${TARGET} ${kernel} kernel failed," \
515             "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
516 .endfor
517 universe: universe_epilogue
518 universe_epilogue:
519         @echo "--------------------------------------------------------------"
520         @echo ">>> make universe completed on `LC_ALL=C date`"
521         @echo "                      (started ${STARTTIME})"
522         @echo "--------------------------------------------------------------"
523 .if defined(DOING_TINDERBOX)
524         @if [ -e ${FAILFILE} ] ; then \
525                 echo "Tinderbox failed:" ;\
526                 cat ${FAILFILE} ;\
527                 exit 1 ;\
528         fi
529 .endif
530 .endif
531
532 buildLINT:
533         ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
534
535 .if defined(.PARSEDIR)
536 .if make(universe)
537 # we do not want a failure of one branch abort all.
538 MAKE_JOB_ERROR_TOKEN= no
539 .export MAKE_JOB_ERROR_TOKEN
540 .endif
541 .endif