Deleted Added
sdiff udiff text old ( 217125 ) new ( 217273 )
full compact
1#
2# $FreeBSD: head/Makefile 217125 2011-01-07 20:36:27Z imp $
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# buildworld - Rebuild *everything*, including glue to help do
9# upgrades.
10# installworld - Install everything built by "buildworld".
11# world - buildworld + installworld, no kernel.
12# buildkernel - Rebuild the kernel and the kernel-modules.
13# installkernel - Install the kernel and the kernel-modules.
14# installkernel.debug
15# reinstallkernel - Reinstall the kernel and the kernel-modules.

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

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

--- 345 unchanged lines hidden ---