Deleted Added
sdiff udiff text old ( 64049 ) new ( 66071 )
full compact
1#
2# $FreeBSD: head/Makefile 64049 2000-07-31 09:26:59Z alex $
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.
11# installkernel - Install the kernel and the kernel-modules.
12# update - Convenient way to update your source tree (cvs).
13# upgrade - Upgrade a.out (2.2.x/3.0) system to the new ELF way
14# most - Build user commands, no libraries or include files.
15# installmost - Install user commands, no libraries or include files.
16# aout-to-elf - Upgrade an system from a.out to elf format (see below).
17# aout-to-elf-build - Build everything required to upgrade a system from
18# a.out to elf format (see below).
19# aout-to-elf-install - Install everything built by aout-to-elf-build (see

--- 59 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= afterdistribute all buildkernel buildworld checkdpadd clean \
86 cleandepend cleandir depend distribute everything hierarchy includes \
87 install installkernel installmost installworld libraries lint \
88 maninstall mk most obj objlink regress rerelease tags update
89
90PATH= /sbin:/bin:/usr/sbin:/usr/bin
91MAKE= PATH=${PATH} make -m ${.CURDIR}/share/mk -f Makefile.inc1
92
93#
94# Handle the user-driven targets, using the source relative mk files.
95#
96${TGTS}: upgrade_checks

--- 88 unchanged lines hidden ---