Deleted Added
full compact
Makefile (264996) Makefile (265449)
1#
1#
2# $FreeBSD: stable/10/Makefile 264996 2014-04-27 01:15:10Z jmmv $
2# $FreeBSD: stable/10/Makefile 265449 2014-05-06 14:38:03Z brooks $
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# tinderbox - Same as universe, but presents a list of failed build
9# targets and exits with an error if there were any.
10# buildworld - Rebuild *everything*, including glue to help do

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

247# 'make -n buildworld' etc.
248${TGTS}: .MAKE
249tinderbox toolchains kernel-toolchains: .MAKE
250.endif
251
252${TGTS}:
253 ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
254
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# tinderbox - Same as universe, but presents a list of failed build
9# targets and exits with an error if there were any.
10# buildworld - Rebuild *everything*, including glue to help do

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

247# 'make -n buildworld' etc.
248${TGTS}: .MAKE
249tinderbox toolchains kernel-toolchains: .MAKE
250.endif
251
252${TGTS}:
253 ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
254
255# Set a reasonable default
256.MAIN: all
255# The historic default "all" target creates files which may cause stale
256# or (in the cross build case) unlinkable results. Fail with an error
257# when no target is given. The users can explicitly specify "all"
258# if they want the historic behavior.
259.MAIN: _guard
257
260
261_guard:
262 @echo
263 @echo "Explicit target required (use \"all\" for historic behavior)"
264 @echo
265 @false
266
258STARTTIME!= LC_ALL=C date
259CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
260.if !empty(CHECK_TIME)
261.error check your date/time: ${STARTTIME}
262.endif
263
264.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
265#

--- 248 unchanged lines hidden ---
267STARTTIME!= LC_ALL=C date
268CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
269.if !empty(CHECK_TIME)
270.error check your date/time: ${STARTTIME}
271.endif
272
273.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
274#

--- 248 unchanged lines hidden ---