FreeBSD src
Go to file
John Baldwin af13de0f57 Build fix: Only <sys/cdefs.h> should be included before __FBSDID().
<sys/param.h> needs to be included after any "opt_foo.h" headers so it
sees the same set of defined macros as other headers.
2013-06-04 15:35:37 +00:00
bin Add 'static' where able. 2013-06-02 17:55:00 +00:00
cddl Port the SDT test now that it's possible to create SDT probes that take 2013-06-02 00:33:36 +00:00
contrib Update jemalloc to version 3.4.0. 2013-06-03 14:36:28 +00:00
crypto Revert a local change that sets the default for UsePrivilegeSeparation to 2013-05-29 00:19:58 +00:00
etc Refine the "nojail" rc keyword, adding "nojailvnet" for files that don't 2013-05-19 04:10:34 +00:00
games
gnu Don't look for headers outside of the source or object directories. In 2013-05-21 17:30:27 +00:00
include Move <stdatomic.h> into sys/sys/. 2013-06-01 21:02:26 +00:00
kerberos5
lib mdoc: convert .Fd to .In, which is much nicer. 2013-06-04 07:37:06 +00:00
libexec
release Convert old make variable modifiers :U and :L to bmake :tu and :tl. 2013-06-02 11:44:23 +00:00
rescue Add less to rescue build. On amd64, this increases rescue size by about 2013-05-13 22:16:33 +00:00
sbin Improve compatibility with old flex and fix build with GCC. 2013-05-22 17:47:45 +00:00
secure
share mdoc: convert .Fd to .In, which is much nicer. 2013-06-04 07:37:06 +00:00
sys Build fix: Only <sys/cdefs.h> should be included before __FBSDID(). 2013-06-04 15:35:37 +00:00
tools Match the options of the kernel. 2013-06-04 06:38:01 +00:00
usr.bin mdoc: convert .Fd to .In, which is much nicer. 2013-06-04 07:37:06 +00:00
usr.sbin Use f_shell_escape() instead of forking to awk. In this case, the 2013-06-04 03:47:21 +00:00
COPYRIGHT
LOCKS
MAINTAINERS Use my @freebsd.org username, rather than ${WORK} username. 2013-05-18 14:05:32 +00:00
Makefile bmake does not like universe_${target}_prologue in the .ORDER 2013-06-03 23:51:46 +00:00
Makefile.inc1 Restore (at least temporarily) SHARED=symlinks in the build includes 2013-05-30 15:25:54 +00:00
ObsoleteFiles.inc Move libmd.so.5 to the proper place and add missing lib32 entry. 2013-05-26 09:25:14 +00:00
README Vendor import of tcpdump 4.4.0. 2013-05-30 06:46:26 +00:00
UPDATING Mention the switch to bmake by default. 2013-05-21 18:38:09 +00:00

This is the top level of the FreeBSD source directory.  This file
was last revised on:
$FreeBSD$

For copyright information, please see the file COPYRIGHT in this
directory (additional copyright information also exists for some
sources in this tree - please see the specific source directories for
more information).

The Makefile in this directory supports a number of targets for
building components (or all) of the FreeBSD source tree, the most
commonly used one being ``world'', which rebuilds and installs
everything in the FreeBSD system from the source tree except the
kernel, the kernel-modules and the contents of /etc.  The ``world''
target should only be used in cases where the source tree has not
changed from the currently running version.  See:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
for more information, including setting make(1) variables.

The ``buildkernel'' and ``installkernel'' targets build and install
the kernel and the modules (see below).  Please see the top of
the Makefile in this directory for more information on the
standard build targets and compile-time flags.

Building a kernel is a somewhat more involved process, documentation
for which can be found at:
   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
And in the config(8) man page.
Note: If you want to build and install the kernel with the
``buildkernel'' and ``installkernel'' targets, you might need to build
world before.  More information is available in the handbook.

The sample kernel configuration files reside in the sys/<arch>/conf
sub-directory (assuming that you've installed the kernel sources), the
file named GENERIC being the one used to build your initial installation
kernel.  The file NOTES contains entries and documentation for all possible
devices, not just those commonly used.  It is the successor of the ancient
LINT file, but in contrast to LINT, it is not buildable as a kernel but a
pure reference and documentation file.


Source Roadmap:
---------------
bin		System/user commands.

cddl		Various commands and libraries under the Common Development
		and Distribution License.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc.

games		Amusements.

gnu		Various commands and libraries under the GNU Public License.
		Please see gnu/COPYING* for more information.

include		System include files.

kerberos5	Kerberos5 (Heimdal) package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

rescue		Build system for statically linked /rescue utilities.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

sys		Kernel sources.

tools		Utilities for regression testing and miscellaneous tasks.

usr.bin		User commands.

usr.sbin	System administration commands.


For information on synchronizing your source tree with one or more of
the FreeBSD Project's development branches, please see:

  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html