Deleted Added
sdiff udiff text old ( 158453 ) new ( 158962 )
full compact
1#
2# $FreeBSD: head/Makefile 158453 2006-05-11 18:54:16Z jhb $
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.
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# update - Convenient way to update your source tree (cvs).
19# check-old - Print a list of old files/directories in the system.
20# delete-old - Delete obsolete files and directories interactively.
21# delete-old-libs - Delete obsolete libraries interactively.
22#
23# This makefile is simple by design. The FreeBSD make automatically reads
24# the /usr/share/mk/sys.mk unless the -m argument is specified on the
25# command line. By keeping this makefile simple, it doesn't matter too

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

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

--- 223 unchanged lines hidden ---