Deleted Added
full compact
Makefile (313790) Makefile (321341)
1#
1#
2# $FreeBSD: stable/10/Makefile 313790 2017-02-16 05:14:07Z ngie $
2# $FreeBSD: stable/10/Makefile 321341 2017-07-21 17:58:06Z 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

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

151WANT_MAKE= fmake
152.endif
153MYMAKE= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
154.if defined(.PARSEDIR)
155HAVE_MAKE= bmake
156.else
157HAVE_MAKE= fmake
158.endif
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

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

151WANT_MAKE= fmake
152.endif
153MYMAKE= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
154.if defined(.PARSEDIR)
155HAVE_MAKE= bmake
156.else
157HAVE_MAKE= fmake
158.endif
159.if ${HAVE_MAKE} != ${WANT_MAKE} || \
159.if defined(ALWAYS_BOOTSTRAP_MAKE) || \
160 ${HAVE_MAKE} != ${WANT_MAKE} || \
160 (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
161NEED_MAKE_UPGRADE= t
162.endif
163.if exists(${MYMAKE})
164SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
165.elif defined(NEED_MAKE_UPGRADE) || ${WANT_MAKE} != "bmake"
166# It may not exist yet but we may cause it to.
167# In the case of fmake, upgrade_checks may cause a newer version to be built.

--- 373 unchanged lines hidden ---
161 (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
162NEED_MAKE_UPGRADE= t
163.endif
164.if exists(${MYMAKE})
165SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
166.elif defined(NEED_MAKE_UPGRADE) || ${WANT_MAKE} != "bmake"
167# It may not exist yet but we may cause it to.
168# In the case of fmake, upgrade_checks may cause a newer version to be built.

--- 373 unchanged lines hidden ---