Deleted Added
full compact
Makefile (100402) Makefile (102692)
1#
1#
2# $FreeBSD: head/Makefile 100402 2002-07-20 10:01:00Z ru $
2# $FreeBSD: head/Makefile 102692 2002-08-31 07:18:40Z peter $
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.

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

199# prior to 2.2.5 in which the installed make doesn't support the -m argument.
200#
201make:
202 @echo
203 @echo "--------------------------------------------------------------"
204 @echo " Upgrading the installed make"
205 @echo "--------------------------------------------------------------"
206 @cd ${.CURDIR}/usr.bin/make; \
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.

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

199# prior to 2.2.5 in which the installed make doesn't support the -m argument.
200#
201make:
202 @echo
203 @echo "--------------------------------------------------------------"
204 @echo " Upgrading the installed make"
205 @echo "--------------------------------------------------------------"
206 @cd ${.CURDIR}/usr.bin/make; \
207 make obj && make depend && make all && make install
207 make obj && make -D_UPGRADING depend && \
208 make -D_UPGRADING all && make install
208
209#
210# Define the upgrade targets. These are listed here in alphabetical
211# order, but that's not important.
212#
213UPGRADE= aout-to-elf aout-to-elf-build aout-to-elf-install \
214 move-aout-libs
215
216#
217# Handle the upgrade targets, using the source relative mk files.
218#
219
220upgrade: aout-to-elf
221
222${UPGRADE} : upgrade_checks
223 @cd ${.CURDIR}; \
224 ${MAKE} -f Makefile.upgrade -m ${.CURDIR}/share/mk ${.TARGET}
209
210#
211# Define the upgrade targets. These are listed here in alphabetical
212# order, but that's not important.
213#
214UPGRADE= aout-to-elf aout-to-elf-build aout-to-elf-install \
215 move-aout-libs
216
217#
218# Handle the upgrade targets, using the source relative mk files.
219#
220
221upgrade: aout-to-elf
222
223${UPGRADE} : upgrade_checks
224 @cd ${.CURDIR}; \
225 ${MAKE} -f Makefile.upgrade -m ${.CURDIR}/share/mk ${.TARGET}