Deleted Added
sdiff udiff text old ( 122204 ) new ( 123311 )
full compact
1#
2# $FreeBSD: head/Makefile 122204 2003-11-07 08:36:55Z kris $
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#
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 \
66 obj objlink regress rerelease tags update
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 ---