Deleted Added
full compact
Makefile (132324) Makefile (132358)
1#
1#
2# $FreeBSD: head/Makefile 132324 2004-07-18 01:19:33Z obrien $
2# $FreeBSD: head/Makefile 132358 2004-07-18 18:55:31Z markm $
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
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 defined(I_KNOW_WHAT_IM_DOING_THANKYOU_VERY_MUCH) || defined(DESTDIR)
147.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
148.if make(world)
149STARTTIME!= LC_ALL=C date
150.endif
151#
152# world
153#
154# Attempt to rebuild and reinstall everything. This target is not to be
155# used for upgrading an existing FreeBSD system, because the kernel is

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

182 @echo " (started ${STARTTIME})"
183 @echo "--------------------------------------------------------------"
184.else
185world:
186 @echo "WARNING: make world will overwrite your existing FreeBSD"
187 @echo "installation without also building and installing a new"
188 @echo "kernel. This can be dangerous. Please read the handbook,"
189 @echo "'Using make world', for how to upgrade your system."
148.if make(world)
149STARTTIME!= LC_ALL=C date
150.endif
151#
152# world
153#
154# Attempt to rebuild and reinstall everything. This target is not to be
155# used for upgrading an existing FreeBSD system, because the kernel is

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

182 @echo " (started ${STARTTIME})"
183 @echo "--------------------------------------------------------------"
184.else
185world:
186 @echo "WARNING: make world will overwrite your existing FreeBSD"
187 @echo "installation without also building and installing a new"
188 @echo "kernel. This can be dangerous. Please read the handbook,"
189 @echo "'Using make world', for how to upgrade your system."
190 @echo "Define DESTDIR to the where you want to install FreeBSD,"
190 @echo "Define DESTDIR to where you want to install FreeBSD,"
191 @echo "including /, to override this warning and proceed as usual."
191 @echo "including /, to override this warning and proceed as usual."
192 @echo "You may get the historical 'make world' behavior by defining"
193 @echo "HISTORICAL_MAKE_WORLD. You should understand the implications"
194 @echo "before doing this."
195 @echo ""
192 @echo "Bailing out now..."
193 @false
194.endif
195
196#
197# kernel
198#
199# Short hand for `make buildkernel installkernel'

--- 82 unchanged lines hidden ---
196 @echo "Bailing out now..."
197 @false
198.endif
199
200#
201# kernel
202#
203# Short hand for `make buildkernel installkernel'

--- 82 unchanged lines hidden ---