Deleted Added
full compact
Makefile (231821) Makefile (232907)
1#
1#
2# $FreeBSD: head/Makefile 231821 2012-02-16 14:08:14Z pluknet $
2# $FreeBSD: head/Makefile 232907 2012-03-13 00:38:49Z jmallett $
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
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.
21# doxygen - Build API documentation of the kernel, needs doxygen.
22# update - Convenient way to update your source tree(s).
23# check-old - List obsolete directories/files/libraries.
24# check-old-dirs - List obsolete directories.
25# check-old-files - List obsolete files.
26# check-old-libs - List obsolete libraries.
27# delete-old - Delete obsolete directories/files.
28# delete-old-dirs - Delete obsolete directories.

--- 283 unchanged lines hidden (view full) ---

312 ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
313
314tinderbox:
315 @cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe
316
317toolchains:
318 @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
319
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.

--- 283 unchanged lines hidden (view full) ---

313 ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
314
315tinderbox:
316 @cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe
317
318toolchains:
319 @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
320
321kernel-toolchains:
322 @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe
323
320#
321# universe
322#
323# Attempt to rebuild *everything* for all supported architectures,
324# with a reasonable chance of success, regardless of how old your
325# existing system is.
326#
327.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)

--- 113 unchanged lines hidden ---
324#
325# universe
326#
327# Attempt to rebuild *everything* for all supported architectures,
328# with a reasonable chance of success, regardless of how old your
329# existing system is.
330#
331.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)

--- 113 unchanged lines hidden ---