Deleted Added
full compact
Makefile (122204) Makefile (123311)
1#
1#
2# $FreeBSD: head/Makefile 122204 2003-11-07 08:36:55Z kris $
2# $FreeBSD: head/Makefile 123311 2003-12-09 02:08:19Z peter $
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".

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

53# If TARGET_ARCH=arch (e.g. ia64, sparc64, ...) is specified you can
54# cross build world for other architectures using the buildworld target,
55# and once the world is built you can cross build a kernel using the
56# buildkernel target.
57#
58# Define the user-driven targets. These are listed here in alphabetical
59# order, but that's not important.
60#
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".

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

53# If TARGET_ARCH=arch (e.g. ia64, sparc64, ...) is specified you can
54# cross build world for other architectures using the buildworld target,
55# and once the world is built you can cross build a kernel using the
56# buildkernel target.
57#
58# Define the user-driven targets. These are listed here in alphabetical
59# order, but that's not important.
60#
61# Targets that begin with underscore are internal targets intended for
62# developer convenience only. They are intentionally not documented and
63# completely subject to change without notice.
64#
61TGTS= all all-man buildkernel buildworld checkdpadd clean \
62 cleandepend cleandir depend distribute distributeworld everything \
63 hierarchy install installcheck installkernel installkernel.debug\
64 reinstallkernel reinstallkernel.debug installworld \
65 libraries lint maninstall \
65TGTS= all all-man buildkernel buildworld checkdpadd clean \
66 cleandepend cleandir depend distribute distributeworld everything \
67 hierarchy install installcheck installkernel installkernel.debug\
68 reinstallkernel reinstallkernel.debug installworld \
69 libraries lint maninstall \
66 obj objlink regress rerelease tags update
70 obj objlink regress rerelease tags update \
71 _worldtmp _legacy _bootstrap-tools _cleanobj _obj \
72 _build-tools _cross-tools _includes _libraries _depend
67
68BITGTS= files includes
69BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
70TGTS+= ${BITGTS}
71
72.ORDER: buildworld installworld
73.ORDER: buildworld distributeworld
74.ORDER: buildworld buildkernel

--- 153 unchanged lines hidden ---
73
74BITGTS= files includes
75BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
76TGTS+= ${BITGTS}
77
78.ORDER: buildworld installworld
79.ORDER: buildworld distributeworld
80.ORDER: buildworld buildkernel

--- 153 unchanged lines hidden ---