Deleted Added
sdiff udiff text old ( 168280 ) new ( 169597 )
full compact
1#
2# $FreeBSD: head/Makefile 168280 2007-04-02 21:32:44Z marcel $
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.
16# reinstallkernel.debug
17# kernel - buildkernel + installkernel.
18# doxygen - Build API documentation of the kernel, needs doxygen.
19# update - Convenient way to update your source tree (cvs).
20# check-old - Print a list of old files/directories in the system.
21# delete-old - Delete obsolete files and directories interactively.
22# delete-old-libs - Delete obsolete libraries interactively.
23#
24# This makefile is simple by design. The FreeBSD make automatically reads
25# the /usr/share/mk/sys.mk unless the -m argument is specified on the
26# command line. By keeping this makefile simple, it doesn't matter too
27# much how different the installed mk files are from those in the source
28# tree. This makefile executes a child make process, forcing it to use
29# the mk files from the source tree which are supposed to DTRT.
30#

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

65#
66# Define the user-driven targets. These are listed here in alphabetical
67# order, but that's not important.
68#
69# Targets that begin with underscore are internal targets intended for
70# developer convenience only. They are intentionally not documented and
71# completely subject to change without notice.
72#
73TGTS= all all-man buildenv buildenvvars buildkernel buildworld check-old \
74 checkdpadd clean cleandepend cleandir delete-old delete-old-libs \
75 depend distribute distributeworld distrib-dirs distribution doxygen \
76 everything hierarchy install installcheck installkernel \
77 installkernel.debug reinstallkernel reinstallkernel.debug \
78 installworld kernel-toolchain libraries lint maninstall \
79 obj objlink regress rerelease showconfig tags toolchain update \
80 _worldtmp _legacy _bootstrap-tools _cleanobj _obj \
81 _build-tools _cross-tools _includes _libraries _depend \
82 build32 distribute32 install32

--- 222 unchanged lines hidden ---