old-cross-binutils/.Sanitize

240 lines
4.9 KiB
Text
Raw Normal View History

# .Sanitize for devo.
1991-05-23 17:32:34 +00:00
# Each directory to survive its way into a release will need a file
1991-05-23 17:32:34 +00:00
# like this one called "./.Sanitize". All keyword lines must exist,
# and must exist in the order specified by this file. Each directory
# in the tree will be processed, top down, in the following order.
# Hash started lines like this one are comments and will be deleted
# before anything else is done. Blank lines will also be squashed
# out.
# The lines between the "Do-first:" line and the "Things-to-keep:"
# line are executed as a /bin/sh shell script before anything else is
# done in this directory.
1991-05-23 17:32:34 +00:00
Do-first:
1994-04-26 19:53:12 +00:00
cygnus_files = "release release-info build-all.mk"
if ( echo $* | grep keep\-cygnus > /dev/null) ; then
1994-04-26 19:53:12 +00:00
keep_these_too="${keep_these_too} ${cygnus_files}"
else
1994-04-26 19:53:12 +00:00
lose_these_too="${lose_these_too} ${cygnus_files}"
fi
1994-04-26 19:53:12 +00:00
mpw_files = "mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw"
if ( echo $* | grep keep\-mpw > /dev/null) ; then
1994-04-26 19:53:12 +00:00
keep_these_too="${keep_these_too} ${mpw_files}"
else
1994-04-26 19:53:12 +00:00
lose_these_too="${lose_these_too} ${mpw_files}"
fi
1991-05-23 17:32:34 +00:00
# All files listed between the "Things-to-keep:" line and the
# "Do-last:" line will be kept. All other files will be removed.
1991-05-23 17:32:34 +00:00
# Directories listed in this section will have their own Sanitize
# called. Directories not listed will be removed in their entirety
# with rm -rf.
Things-to-keep:
1992-07-22 02:46:15 +00:00
.cvsignore
1992-09-29 22:51:18 +00:00
COPYING
COPYING.LIB
1992-06-25 03:11:49 +00:00
CYGNUS
1992-04-24 20:53:28 +00:00
ChangeLog
1991-05-23 17:32:34 +00:00
Makefile.in
1991-08-23 07:15:55 +00:00
README
1992-04-24 21:51:47 +00:00
autoconf
1991-05-23 21:15:10 +00:00
bfd
1991-05-23 22:21:19 +00:00
binutils
byacc
1991-05-23 17:32:34 +00:00
config
config.guess
1991-12-17 17:07:39 +00:00
config.sub
1991-05-23 17:32:34 +00:00
configure
1992-04-22 21:52:44 +00:00
configure.bat
1991-05-23 17:32:34 +00:00
configure.in
cvs
1992-09-08 20:58:39 +00:00
deja-gnu
dejagnu
1991-08-25 21:48:40 +00:00
diff
dvips
emacs
1992-12-05 23:48:21 +00:00
etc
1992-11-13 01:05:59 +00:00
expect
fileutils
flex
1991-05-23 17:32:34 +00:00
gas
1991-05-23 22:21:19 +00:00
gcc
gdb
1991-09-12 00:33:59 +00:00
gdbm
1992-04-22 21:52:44 +00:00
gdbtest
1991-11-19 05:23:19 +00:00
glob
gprof
1991-08-25 21:48:40 +00:00
grep
groff
1991-05-23 17:32:34 +00:00
include
1993-06-23 20:29:28 +00:00
install.sh
1992-05-05 23:59:05 +00:00
ispell
1991-05-23 22:21:19 +00:00
ld
1992-02-08 00:32:56 +00:00
libg++
1992-04-22 21:52:44 +00:00
libgcc
libiberty
1993-08-18 01:24:15 +00:00
libio
m4
make
mmalloc
1992-04-22 21:52:44 +00:00
move-if-change
1992-02-26 07:04:57 +00:00
newlib
1992-08-31 22:26:18 +00:00
opcodes
1993-11-11 19:50:02 +00:00
pagas
1992-04-24 20:53:28 +00:00
patch
1992-07-09 06:21:03 +00:00
prms
1991-08-25 23:40:24 +00:00
rcs
1991-05-23 17:32:34 +00:00
readline
sed
1993-02-21 02:53:55 +00:00
send-pr
shellutils
1993-02-04 18:44:21 +00:00
sim
1992-11-13 01:05:59 +00:00
tcl
textutils
tk
1992-07-22 02:46:15 +00:00
test-build.mk
1991-07-31 05:15:37 +00:00
texinfo
1992-05-05 02:52:54 +00:00
tgas
1993-11-11 19:50:02 +00:00
utils
1993-02-03 03:24:20 +00:00
uudecode
wdiff
xiberty
1991-05-23 17:32:34 +00:00
1993-05-27 06:44:29 +00:00
Things-to-lose:
# The lines between the "Do-last:" line and the end of the file
# are executed as a /bin/sh shell script after everything else is
# done.
1991-05-23 17:32:34 +00:00
Do-last:
1993-05-27 03:22:48 +00:00
if ( echo $* | egrep verbose > /dev/null ) ; then
verbose=true
else
verbose=
fi
# Remove "sanitize-Sanitize" lines.
if [ -n "${verbose}" ] ; then
echo Cleaning unconditional sanitizations out of Makefile.in...
fi
cp Makefile.in new
sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new
if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
mv Makefile.in .Recover
fi
mv new Makefile.in
1993-05-27 03:22:48 +00:00
if [ -n "${verbose}" ] ; then
echo Looking for signs of \"v9\"...
fi
# Don't try to clean directories here, as the 'mv' command will fail.
# Also, grep fails on NFS mounted directories.
if ( echo $* | grep keep\-v9 > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
1993-05-27 03:22:48 +00:00
if [ -n "${verbose}" ] ; then
echo Keeping v9 stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
1993-05-27 03:22:48 +00:00
if [ -n "${verbose}" ] ; then
echo Cleaning the \"v9\" out of $i...
fi
cp $i new
sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
mv $i .Recover
fi
mv new $i
fi
done
fi
1993-05-27 03:22:48 +00:00
if [ -n "${verbose}" ] ; then
echo Thawing away the \"chill\"...
fi
# Don't try to clean directories here, as the 'mv' command will fail.
# Also, grep fails on NFS mounted directories.
if ( echo $* | grep keep\-chill > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
1993-05-27 03:22:48 +00:00
if [ -n "${verbose}" ] ; then
echo Keeping chill stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
1993-05-27 03:22:48 +00:00
if [ -n "${verbose}" ] ; then
echo Thawing the \"chill\" out of $i...
fi
cp $i new
sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
1993-05-27 03:22:48 +00:00
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
if [ -n "${verbose}" ] ; then
echo Removing traces of \"mpw\"...
fi
# Don't try to clean directories here, as the 'mv' command will fail.
# Also, grep fails on NFS mounted directories.
if ( echo $* | grep keep\-mpw > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping mpw stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"mpw\" from $i...
fi
cp $i new
sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
1993-05-27 03:22:48 +00:00
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
fi
done
1992-04-24 20:53:28 +00:00
# eof