1994-02-01 03:48:54 +00:00
|
|
|
# .Sanitize for devo/include.
|
1991-05-23 17:10:40 +00:00
|
|
|
|
1994-02-01 03:48:54 +00:00
|
|
|
# Each directory to survive its way into a release will need a file
|
1991-05-23 17:10:40 +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
|
1994-02-01 03:48:54 +00:00
|
|
|
# done in this directory.
|
1991-05-23 17:10:40 +00:00
|
|
|
|
|
|
|
Do-first:
|
|
|
|
|
1994-02-01 03:48:54 +00:00
|
|
|
|
1991-05-23 17:10:40 +00:00
|
|
|
# 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:
|
|
|
|
|
1991-07-24 01:07:25 +00:00
|
|
|
COPYING
|
1991-08-22 08:00:35 +00:00
|
|
|
ChangeLog
|
1991-05-23 17:10:40 +00:00
|
|
|
ansidecl.h
|
1991-12-01 04:56:32 +00:00
|
|
|
aout
|
1993-12-30 18:44:54 +00:00
|
|
|
bfdlink.h
|
1991-05-23 17:10:40 +00:00
|
|
|
bout.h
|
1996-11-20 08:42:22 +00:00
|
|
|
callback.h
|
1991-12-01 04:56:32 +00:00
|
|
|
coff
|
1992-08-31 00:57:03 +00:00
|
|
|
demangle.h
|
1993-03-18 22:00:09 +00:00
|
|
|
dis-asm.h
|
1991-12-01 04:56:32 +00:00
|
|
|
elf
|
1994-03-01 18:57:01 +00:00
|
|
|
floatformat.h
|
1996-10-03 17:45:45 +00:00
|
|
|
fnmatch.h
|
1991-12-14 01:32:54 +00:00
|
|
|
fopen-bin.h
|
|
|
|
fopen-same.h
|
1996-06-18 19:14:57 +00:00
|
|
|
fopen-vms.h
|
1991-05-23 17:10:40 +00:00
|
|
|
gdbm.h
|
|
|
|
getopt.h
|
1994-11-25 07:32:51 +00:00
|
|
|
hp-symtab.h
|
1991-05-23 17:10:40 +00:00
|
|
|
ieee.h
|
1994-02-10 22:06:53 +00:00
|
|
|
libiberty.h
|
1995-04-04 19:58:09 +00:00
|
|
|
mpw
|
1993-07-20 05:16:51 +00:00
|
|
|
nlm
|
1991-05-23 17:10:40 +00:00
|
|
|
oasys.h
|
1997-03-18 00:22:33 +00:00
|
|
|
objalloc.h
|
1991-05-23 17:10:40 +00:00
|
|
|
obstack.h
|
1994-03-09 17:34:32 +00:00
|
|
|
os9k.h
|
1991-12-01 04:56:32 +00:00
|
|
|
opcode
|
1994-12-14 21:11:18 +00:00
|
|
|
progress.h
|
1997-03-17 14:19:23 +00:00
|
|
|
remote-sim.h
|
1991-05-23 17:10:40 +00:00
|
|
|
wait.h
|
|
|
|
|
1993-05-27 06:44:29 +00:00
|
|
|
Things-to-lose:
|
|
|
|
|
1993-07-30 16:46:19 +00:00
|
|
|
|
1991-05-23 17:10:40 +00:00
|
|
|
Do-last:
|
|
|
|
|
1996-12-28 05:26:04 +00:00
|
|
|
tic80_files="ChangeLog dis-asm.h"
|
|
|
|
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
|
|
|
|
for i in $tic80_files ; do
|
|
|
|
if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Keeping tic80 stuff in $i
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
for i in $tic80_files ; do
|
|
|
|
if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Removing traces of \"tic80\" from $i...
|
|
|
|
fi
|
|
|
|
cp $i new
|
|
|
|
sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/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
|
|
|
|
|
1997-02-27 01:49:49 +00:00
|
|
|
d30v_files="ChangeLog dis-asm.h"
|
|
|
|
if ( echo $* | grep keep\-d30v > /dev/null ) ; then
|
|
|
|
for i in $d30v_files ; do
|
|
|
|
if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Keeping d30v stuff in $i
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
for i in $d30v_files ; do
|
|
|
|
if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Removing traces of \"d30v\" from $i...
|
|
|
|
fi
|
|
|
|
cp $i new
|
|
|
|
sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/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
|
|
|
|
|
1997-12-22 17:24:00 +00:00
|
|
|
sky_files="ChangeLog dis-asm.h"
|
|
|
|
if ( echo $* | grep keep\-sky > /dev/null ) ; then
|
|
|
|
for i in $sky_files ; do
|
|
|
|
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Keeping sky stuff in $i
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
for i in $sky_files ; do
|
|
|
|
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Removing traces of \"sky\" from $i...
|
|
|
|
fi
|
|
|
|
cp $i new
|
|
|
|
sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/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
|
|
|
|
|
1994-11-30 01:45:28 +00:00
|
|
|
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 17:10:40 +00:00
|
|
|
# End of file.
|