binutils-gdb/gas/.Sanitize

188 lines
3.6 KiB
Plaintext
Raw Normal View History

# .Sanitize for devo/gas.
1991-05-23 19:18:12 +02:00
1994-01-04 22:18:15 +01:00
# Each directory to survive its way into a release will need a file
1991-05-23 19:18:12 +02: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 19:18:12 +02:00
Do-first:
# All files listed between the "Things-to-keep:" line and the
# "Files-to-sed:" line will be kept. All other files will be removed.
# 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-12-08 09:05:32 +01:00
CONTRIBUTORS
1991-05-23 19:18:12 +02:00
COPYING
ChangeLog
Makefile.in
1992-12-08 09:05:32 +01:00
NEWS
1991-05-23 19:18:12 +02:00
NOTES
NOTES.config
README
1992-02-13 11:13:24 +01:00
README-quirks
1992-12-08 09:05:32 +01:00
README-vms
1991-05-23 19:18:12 +02:00
README.coff
README.rich
1994-08-28 22:07:16 +02:00
acconfig.h
aclocal.m4
1991-05-23 19:18:12 +02:00
app.c
as.c
as.h
atof-generic.c
bignum-copy.c
bignum.h
1992-12-08 09:05:32 +01:00
bit_fix.h
1991-05-23 19:18:12 +02:00
cond.c
1994-08-28 22:07:16 +02:00
conf.in
1991-05-23 19:18:12 +02:00
config
config-gas.com
1994-08-28 22:07:16 +02:00
configure
configure.bat
1991-05-23 19:18:12 +02:00
configure.in
debug.c
doc
ecoff.c
ecoff.h
1991-05-23 19:18:12 +02:00
expr.c
expr.h
flonum-copy.c
1992-12-08 09:05:32 +01:00
flonum-konst.c
1991-05-23 19:18:12 +02:00
flonum-mult.c
flonum.h
frags.c
frags.h
1994-01-31 17:44:53 +01:00
gasp.c
1994-09-19 18:49:38 +02:00
gdbinit.in
1991-05-23 19:18:12 +02:00
hash.c
hash.h
input-file.c
input-file.h
input-scrub.c
1992-02-13 11:13:24 +01:00
link.cmd
1992-01-17 21:54:32 +01:00
listing.c
listing.h
1994-01-06 02:14:04 +01:00
literal.c
1991-05-23 19:18:12 +02:00
messages.c
1995-04-12 21:29:34 +02:00
mpw-config.in
mpw-make.in
1991-05-23 19:18:12 +02:00
obj.h
output-file.c
output-file.h
read.c
read.h
1993-11-22 07:04:32 +01:00
stabs.c
1991-05-23 19:18:12 +02:00
struc-symbol.h
subsegs.c
subsegs.h
symbols.c
symbols.h
tc.h
1993-03-29 15:27:13 +02:00
testsuite
1994-03-15 04:35:59 +01:00
vmsconf.sh
1991-05-23 19:18:12 +02:00
write.c
write.h
xmalloc.c
1993-05-27 08:44:29 +02:00
Things-to-lose:
1991-05-23 19:18:12 +02:00
Do-last:
i960xl_files=ChangeLog
if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
if [ -n "${verbose}" ] ; then
echo Keeping i960xl stuff in $i960xl_files.
fi
else
if [ -n "${verbose}" ]; then
echo -n Cleaning i960xl in `pwd`:
fi
for f in $i960xl_files ; do
if [ -n "${verbose}" ] ; then
echo -n " " $f
fi
sed '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' < $f > new
if [ -n "${safe}" ] ; then
mv $f .Recover
fi
mv new $f
done
fi
rce_files="configure.in as.c configure ChangeLog Makefile.in"
1994-11-24 22:48:21 +01:00
if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $rce_files ; do
if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping rce stuff in $i
fi
fi
done
else
for i in $rce_files ; do
if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"rce\" from $i...
fi
cp $i new
sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/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
arc_files="ChangeLog configure.in configure Makefile.in"
1994-11-30 03:16:54 +01:00
if ( echo $* | grep keep\-arc > /dev/null ) ; then
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping arc stuff in $i
fi
fi
done
else
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"arc\" from $i...
fi
cp $i new
sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/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
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
fi
done
1991-05-23 19:18:12 +02:00
#
# End of file.