Deleted Added
full compact
Makefile (281836) Makefile (289248)
1#
1#
2# $FreeBSD: stable/10/Makefile 281836 2015-04-21 17:02:55Z garga $
2# $FreeBSD: stable/10/Makefile 289248 2015-10-13 18:44:55Z bdrewery $
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

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

240 -chflags -R 0 ${.OBJDIR}
241 rm -rf ${.OBJDIR}/*
242.endif
243
244#
245# Handle the user-driven targets, using the source relative mk files.
246#
247
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

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

240 -chflags -R 0 ${.OBJDIR}
241 rm -rf ${.OBJDIR}/*
242.endif
243
244#
245# Handle the user-driven targets, using the source relative mk files.
246#
247
248.if empty(.MAKEFLAGS:M-n)
248.if !(!empty(.MAKEFLAGS:M-n) && ${.MAKEFLAGS:M-n} == "-n")
249# skip this for -n to avoid changing previous behavior of
249# skip this for -n to avoid changing previous behavior of
250# 'make -n buildworld' etc.
250# 'make -n buildworld' etc. Using -n -n will run it.
251${TGTS}: .MAKE
252tinderbox toolchains kernel-toolchains: .MAKE
253.endif
254
255${TGTS}:
256 ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
257
258# The historic default "all" target creates files which may cause stale

--- 273 unchanged lines hidden ---
251${TGTS}: .MAKE
252tinderbox toolchains kernel-toolchains: .MAKE
253.endif
254
255${TGTS}:
256 ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
257
258# The historic default "all" target creates files which may cause stale

--- 273 unchanged lines hidden ---