Add the missing rerelease target back.
Reported by: Justin Gibbs. Add the move-aout-libs upgrade target so that people who have already gone elf can put their libraries through the mincer. Anyone who hasn't deleted aout libraries from /usr/lib (but has done a make world putting the new aout libs in /usr/lib/aout) will be asked for confirmation to delete them one by one.
This commit is contained in:
parent
88d37d8d98
commit
2b0daddd6a
13
Makefile
13
Makefile
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# $Id: Makefile,v 1.214 1998/09/04 21:19:37 jb Exp $
|
# $Id: Makefile,v 1.215 1998/09/07 18:10:26 ache Exp $
|
||||||
#
|
#
|
||||||
# The user-driven targets are:
|
# The user-driven targets are:
|
||||||
#
|
#
|
||||||
@ -15,6 +15,8 @@
|
|||||||
# a.out to elf format (see below).
|
# a.out to elf format (see below).
|
||||||
# aout-to-elf-install - Install everything built by aout-to-elf-build (see
|
# aout-to-elf-install - Install everything built by aout-to-elf-build (see
|
||||||
# below).
|
# below).
|
||||||
|
# move-aout-libs - Move the a.out libraries into an aout sub-directory
|
||||||
|
# of each elf library sub-directory.
|
||||||
#
|
#
|
||||||
# This makefile is simple by design. The FreeBSD make automatically reads
|
# This makefile is simple by design. The FreeBSD make automatically reads
|
||||||
# the /usr/share/mk/sys.mk unless the -m argument is specified on the
|
# the /usr/share/mk/sys.mk unless the -m argument is specified on the
|
||||||
@ -90,9 +92,9 @@
|
|||||||
# Define the user-driven targets. These are listed here in alphabetical
|
# Define the user-driven targets. These are listed here in alphabetical
|
||||||
# order, but that's not important.
|
# order, but that's not important.
|
||||||
#
|
#
|
||||||
TGTS = all buildworld clean cleandepend cleanobj depend distribute \
|
TGTS = afterdistribute all buildworld clean cleandepend cleanobj depend \
|
||||||
everything hierarchy includes installmost install installworld \
|
distribute everything includes installmost install installworld \
|
||||||
most obj update world afterdistribute
|
most obj rerelease update world
|
||||||
|
|
||||||
#
|
#
|
||||||
# Handle the user-driven targets, using the source relative mk files.
|
# Handle the user-driven targets, using the source relative mk files.
|
||||||
@ -122,7 +124,8 @@ test :
|
|||||||
# Define the upgrade targets. These are listed here in alphabetical
|
# Define the upgrade targets. These are listed here in alphabetical
|
||||||
# order, but that's not important.
|
# order, but that's not important.
|
||||||
#
|
#
|
||||||
UPGRADE = aout-to-elf aout-to-elf-build aout-to-elf-install
|
UPGRADE = aout-to-elf aout-to-elf-build aout-to-elf-install \
|
||||||
|
move-aout-libs
|
||||||
|
|
||||||
#
|
#
|
||||||
# Handle the upgrade targets, using the source relative mk files.
|
# Handle the upgrade targets, using the source relative mk files.
|
||||||
|
Loading…
Reference in New Issue
Block a user