Deleted Added
full compact
1#
2# $FreeBSD: head/Makefile 217125 2011-01-07 20:36:27Z imp $
2# $FreeBSD: head/Makefile 217273 2011-01-11 18:32:05Z imp $
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 stop on first failure.
9# buildworld - Rebuild *everything*, including glue to help do
10# upgrades.
11# installworld - Install everything built by "buildworld".
12# world - buildworld + installworld, no kernel.
13# buildkernel - Rebuild the kernel and the kernel-modules.
14# installkernel - Install the kernel and the kernel-modules.
15# installkernel.debug
16# reinstallkernel - Reinstall the kernel and the kernel-modules.

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

31#
32# This makefile is simple by design. The FreeBSD make automatically reads
33# the /usr/share/mk/sys.mk unless the -m argument is specified on the
34# command line. By keeping this makefile simple, it doesn't matter too
35# much how different the installed mk files are from those in the source
36# tree. This makefile executes a child make process, forcing it to use
37# the mk files from the source tree which are supposed to DTRT.
38#
38# The user-driven targets (as listed above) are implemented in Makefile.inc1.
39# Most of the user-driven targets (as listed above) are implemented in
40# Makefile.inc1. The exceptions are universe, tingerbox and targets.
41#
42# If you want to build your system from source be sure that /usr/obj has
43# at least 800MB of diskspace available.
44#
45# For individuals wanting to build from the sources currently on their
46# system, the simple instructions are:
47#
48# 1. `cd /usr/src' (or to the directory containing your source tree).

--- 345 unchanged lines hidden ---