Deleted Added
full compact
Makefile (137288) Makefile (138515)
1#
1#
2# $FreeBSD: head/Makefile 137288 2004-11-06 03:14:26Z peter $
2# $FreeBSD: head/Makefile 138515 2004-12-07 14:41:16Z 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) ---

212kernel: buildkernel installkernel
213
214#
215# Perform a few tests to determine if the installed tools are adequate
216# for building the world.
217#
218upgrade_checks:
219 @if ! (cd ${.CURDIR}/tools/regression/usr.bin/make && \
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) ---

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

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

--- 71 unchanged lines hidden ---