Deleted Added
full compact
Makefile (142644) Makefile (143032)
1#
1#
2# $FreeBSD: head/Makefile 142644 2005-02-27 12:11:35Z ru $
2# $FreeBSD: head/Makefile 143032 2005-03-02 12:33:23Z harti $
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".

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

212#
213kernel: buildkernel installkernel
214
215#
216# Perform a few tests to determine if the installed tools are adequate
217# for building the world.
218#
219upgrade_checks:
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".

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

212#
213kernel: buildkernel installkernel
214
215#
216# Perform a few tests to determine if the installed tools are adequate
217# for building the world.
218#
219upgrade_checks:
220 @if ! (cd ${.CURDIR}/tools/regression/usr.bin/make && \
220 @if ! (cd ${.CURDIR}/tools/build/make_check && \
221 PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
222 PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
223 then \
224 (cd ${.CURDIR} && make make); \
225 fi
226
227#
228# Upgrade make(1) to the current version using the installed

--- 72 unchanged lines hidden ---
221 PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
222 PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
223 then \
224 (cd ${.CURDIR} && make make); \
225 fi
226
227#
228# Upgrade make(1) to the current version using the installed

--- 72 unchanged lines hidden ---