NameDateSize

..22-Jun-202150

bin/H20-Dec-201642

cddl/H20-Dec-201610

contrib/H20-Dec-201670

COPYRIGHTH A D08-Mar-20156 KiB

crypto/H20-Dec-20166

etc/H20-Dec-201692

games/H20-Dec-201615

gnu/H20-Dec-20168

include/H20-Dec-2016105

kerberos5/H20-Dec-201612

lib/H20-Dec-201693

libexec/H20-Dec-201634

LOCKSH A D08-Mar-2015383

MAINTAINERSH A D08-Mar-20156.1 KiB

MakefileH A D08-Mar-201516.8 KiB

Makefile.inc1H A D08-Mar-201553.9 KiB

Makefile.mipsH A D08-Mar-201596

ObsoleteFiles.incH A D08-Mar-2015245.2 KiB

READMEH A D08-Mar-20153 KiB

release/H20-Dec-201624

rescue/H20-Dec-20166

sbin/H20-Dec-2016101

secure/H20-Dec-20168

share/H20-Dec-201629

sys/H20-Dec-201659

tools/H20-Dec-201615

UPDATINGH A D22-Dec-201677.3 KiB

usr.bin/H20-Dec-2016258

usr.sbin/H20-Dec-2016236

README

1$FreeBSD$
2was last revised on:
3$FreeBSD$
4
5For copyright information, please see the file COPYRIGHT in this
6directory (additional copyright information also exists for some
7sources in this tree - please see the specific source directories for
8more information).
9
10The Makefile in this directory supports a number of targets for
11building components (or all) of the FreeBSD source tree, the most
12commonly used one being ``world'', which rebuilds and installs
13everything in the FreeBSD system from the source tree except the
14kernel, the kernel-modules and the contents of /etc.  The ``world''
15target should only be used in cases where the source tree has not
16changed from the currently running version.  See:
17http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
18for more information, including setting make(1) variables.
19
20The ``buildkernel'' and ``installkernel'' targets build and install
21the kernel and the modules (see below).  Please see the top of
22the Makefile in this directory for more information on the
23standard build targets and compile-time flags.
24
25Building a kernel is a somewhat more involved process, documentation
26for which can be found at:
27   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
28And in the config(8) man page.
29Note: If you want to build and install the kernel with the
30``buildkernel'' and ``installkernel'' targets, you might need to build
31world before.  More information is available in the handbook.
32
33The sample kernel configuration files reside in the sys/<arch>/conf
34sub-directory (assuming that you've installed the kernel sources), the
35file named GENERIC being the one used to build your initial installation
36kernel.  The file NOTES contains entries and documentation for all possible
37devices, not just those commonly used.  It is the successor of the ancient
38LINT file, but in contrast to LINT, it is not buildable as a kernel but a
39pure reference and documentation file.
40
41
42Source Roadmap:
43---------------
44bin		System/user commands.
45
46cddl		Various commands and libraries under the Common Development
47		and Distribution License.
48
49contrib		Packages contributed by 3rd parties.
50
51crypto		Cryptography stuff (see crypto/README).
52
53etc		Template files for /etc.
54
55games		Amusements.
56
57gnu		Various commands and libraries under the GNU Public License.
58		Please see gnu/COPYING* for more information.
59
60include		System include files.
61
62kerberos5	Kerberos5 (Heimdal) package.
63
64lib		System libraries.
65
66libexec		System daemons.
67
68release		Release building Makefile & associated tools.
69
70rescue		Build system for statically linked /rescue utilities.
71
72sbin		System commands.
73
74secure		Cryptographic libraries and commands.
75
76share		Shared resources.
77
78sys		Kernel sources.
79
80tools		Utilities for regression testing and miscellaneous tasks.
81
82usr.bin		User commands.
83
84usr.sbin	System administration commands.
85
86
87For information on synchronizing your source tree with one or more of
88the FreeBSD Project's development branches, please see:
89
90  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html
91