Deleted Added
sdiff udiff text old ( 95509 ) new ( 95730 )
full compact
1#
2# $FreeBSD: head/Makefile 95509 2002-04-26 17:55:27Z ru $
3#
4# The user-driven targets are:
5#
6# buildworld - Rebuild *everything*, including glue to help do
7# upgrades.
8# installworld - Install everything built by "buildworld".
9# world - buildworld + installworld.
10# buildkernel - Rebuild the kernel and the kernel-modules.

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

79# ----------------------------------------------------------------------------
80#
81#
82# Define the user-driven targets. These are listed here in alphabetical
83# order, but that's not important.
84#
85TGTS= all all-man buildkernel buildworld checkdpadd clean \
86 cleandepend cleandir depend distribute distribworld everything \
87 hierarchy includes install installcheck installkernel kernel \
88 reinstallkernel installmost installworld libraries lint \
89 mk most obj objlink regress rerelease tags update
90
91PATH= /sbin:/bin:/usr/sbin:/usr/bin
92MAKE= PATH=${PATH} make -m ${.CURDIR}/share/mk -f Makefile.inc1
93
94#
95# Handle the user-driven targets, using the source relative mk files.
96#
97${TGTS}: upgrade_checks
98 @cd ${.CURDIR}; \

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

129 @cd ${.CURDIR}; ${MAKE} post-world
130.endif
131 @echo
132 @echo "--------------------------------------------------------------"
133 @printf ">>> ${OBJFORMAT} make world completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
134 @echo "--------------------------------------------------------------"
135
136#
137# Perform a few tests to determine if the installed tools are adequate
138# for building the world. These are for older systems (prior to 2.2.5).
139#
140# From 2.2.5 onwards, the installed tools will pass these upgrade tests,
141# so the normal make world is capable of doing what is required to update
142# the system to current.
143#
144upgrade_checks:

--- 45 unchanged lines hidden ---