Deleted Added
full compact
Makefile (95509) Makefile (95730)
1#
1#
2# $FreeBSD: head/Makefile 95509 2002-04-26 17:55:27Z ru $
2# $FreeBSD: head/Makefile 95730 2002-04-29 15:22:01Z 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 \
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 \
87 hierarchy includes install installcheck installkernel \
88 reinstallkernel installmost installworld libraries lint \
89 mk most obj objlink regress rerelease tags update
90
88 reinstallkernel installmost installworld libraries lint \
89 mk most obj objlink regress rerelease tags update
90
91.ORDER: buildworld installworld
92.ORDER: buildworld distribworld
93.ORDER: buildkernel installkernel
94.ORDER: buildkernel reinstallkernel
95
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#
96PATH= /sbin:/bin:/usr/sbin:/usr/bin
97MAKE= PATH=${PATH} make -m ${.CURDIR}/share/mk -f Makefile.inc1
98
99#
100# Handle the user-driven targets, using the source relative mk files.
101#
102${TGTS}: upgrade_checks
103 @cd ${.CURDIR}; \

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

134 @cd ${.CURDIR}; ${MAKE} post-world
135.endif
136 @echo
137 @echo "--------------------------------------------------------------"
138 @printf ">>> ${OBJFORMAT} make world completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
139 @echo "--------------------------------------------------------------"
140
141#
142# kernel
143#
144# Short hand for `make buildkernel installkernel'
145#
146kernel: buildkernel installkernel
147
148#
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 ---
149# Perform a few tests to determine if the installed tools are adequate
150# for building the world. These are for older systems (prior to 2.2.5).
151#
152# From 2.2.5 onwards, the installed tools will pass these upgrade tests,
153# so the normal make world is capable of doing what is required to update
154# the system to current.
155#
156upgrade_checks:

--- 45 unchanged lines hidden ---