Deleted Added
sdiff udiff text old ( 131876 ) new ( 132234 )
full compact
1#
2# $FreeBSD: head/Makefile 131876 2004-07-09 13:55:50Z phk $
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".

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

139
140${TGTS}:
141 @cd ${.CURDIR}; \
142 ${_MAKE} ${.TARGET}
143
144# Set a reasonable default
145.MAIN: all
146
147.if make(world)
148STARTTIME!= LC_ALL=C date
149.endif
150#
151# world
152#
153# Attempt to rebuild and reinstall *everything*, with reasonable chance of
154# success, regardless of how old your existing system is.
155#
156world: upgrade_checks
157 @echo "--------------------------------------------------------------"
158 @echo ">>> make world started on ${STARTTIME}"
159 @echo "--------------------------------------------------------------"
160.if target(pre-world)
161 @echo
162 @echo "--------------------------------------------------------------"

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

173 @echo "--------------------------------------------------------------"
174 @cd ${.CURDIR}; ${_MAKE} post-world
175.endif
176 @echo
177 @echo "--------------------------------------------------------------"
178 @echo ">>> make world completed on `LC_ALL=C date`"
179 @echo " (started ${STARTTIME})"
180 @echo "--------------------------------------------------------------"
181
182#
183# kernel
184#
185# Short hand for `make buildkernel installkernel'
186#
187kernel: buildkernel installkernel
188

--- 79 unchanged lines hidden ---