diff options
author | jb <jb@FreeBSD.org> | 1998-09-09 06:07:32 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-09 06:07:32 +0000 |
commit | 82de866dd9394dabcee6d79f9c7aa90a2899258b (patch) | |
tree | d62babc7fde85060d35fe568871626b1631ed936 /Makefile | |
parent | 9554c8ce0c1e0b1bbeb6b2ab6f86e248abb56249 (diff) | |
download | FreeBSD-src-82de866dd9394dabcee6d79f9c7aa90a2899258b.zip FreeBSD-src-82de866dd9394dabcee6d79f9c7aa90a2899258b.tar.gz |
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -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: # @@ -15,6 +15,8 @@ # a.out to elf format (see below). # aout-to-elf-install - Install everything built by aout-to-elf-build (see # 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 # 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 # order, but that's not important. # -TGTS = all buildworld clean cleandepend cleanobj depend distribute \ - everything hierarchy includes installmost install installworld \ - most obj update world afterdistribute +TGTS = afterdistribute all buildworld clean cleandepend cleanobj depend \ + distribute everything includes installmost install installworld \ + most obj rerelease update world # # 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 # 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. |