old-cross-binutils/gdb/.Sanitize
Fred Fish f747d2596a * alldeps.mak, configure.in, i860-break.h, i860-opcode.h,
i860-pinsn.c, i860-tdep.c, config/i860/*:  Remove incomplete i860
	support that can't be integrated anyway due to lack of clear
	authorship.
1993-03-25 23:08:24 +00:00

295 lines
4.8 KiB
Text

# .Sanitize for devo/gdb.
# Each directory to survive it's way into a release will need a file
# 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
Do-first:
if ( echo $* | grep keep\-chill > /dev/null ) ; then
keep_these_too="ch-exp.y ch-lang.c ch-lang.h ch-typeprint.c ch-valprint.c"
fi
# 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:
.gdbinit
29k-share
COPYING
ChangeLog
ChangeLog-3.x
ChangeLog-9091
Makefile.in
NEWS
Projects
README
TODO
a68v-nat.c
alldeps.mak
alloca.c
altos-xdep.c
am29k-pinsn.c
am29k-tdep.c
arm-convert.s
arm-pinsn.c
arm-tdep.c
arm-xdep.c
blockframe.c
breakpoint.c
breakpoint.h
buildsym.c
buildsym.h
c-exp.y
c-lang.c
c-lang.h
c-typeprint.c
c-valprint.c
call-cmds.h
coffread.c
command.c
command.h
complaints.c
complaints.h
config
configure.in
convex-pinsn.c
convex-tdep.c
convex-xdep.c
copying.awk
copying.c
core.c
coredep.c
corelow.c
cp-valprint.c
createtags
dbxread.c
defs.h
demangle.c
depend
doc
dwarfread.c
elfread.c
environ.c
environ.h
eval.c
exec.c
expprint.c
expression.h
findvar.c
fork-child.c
frame.h
gcc.patch
gdb-stabs.h
gdb.1
gdbcmd.h
gdbcore.h
gdbtypes.c
gdbtypes.h
go32-xdep.c
gould-pinsn.c
gould-xdep.c
h8300-tdep.c
h8500-tdep.c
hp300ux-nat.c
hppa-pinsn.c
hppab-core.c
hppab-nat.c
hppab-tdep.c
hppah-nat.c
hppah-tdep.c
i386-pinsn.c
i386-stub.c
i386-tdep.c
i386b-nat.c
i386mach-nat.c
i386v-nat.c
i386v4-nat.c
i387-tdep.c
i960-pinsn.c
i960-tdep.c
infcmd.c
inferior.h
inflow.c
infptrace.c
infrun.c
inftarg.c
irix4-nat.c
kdb-start.c
language.c
language.h
m2-exp.y
m2-lang.c
m2-lang.h
m2-typeprint.c
m2-valprint.c
m68k-pinsn.c
m68k-stub.c
m68k-tdep.c
m88k-nat.c
m88k-pinsn.c
m88k-tdep.c
main.c
maint.c
mem-break.c
minimon.h
minsyms.c
mips-nat.c
mips-pinsn.c
mips-tdep.c
mipsread.c
munch
news-xdep.c
nindy-share
nindy-tdep.c
ns32k-opcode.h
ns32k-pinsn.c
objfiles.c
objfiles.h
paread.c
parse.c
parser-defs.h
partial-stab.h
printcmd.c
procfs.c
putenv.c
pyr-pinsn.c
pyr-tdep.c
pyr-xdep.c
regex.c
regex.h
rem-multi.shar
remote-adapt.c
remote-eb.c
remote-es1800.c
remote-hms.c
remote-mips.c
remote-mm.c
remote-nindy.c
remote-sim.c
remote-st2000.c
remote-udi.c
remote-vx.c
remote-z8k.c
remote.c
rs6000-nat.c
rs6000-pinsn.c
rs6000-tdep.c
saber.suppress
ser-bsd.c
ser-go32.c
ser-termios.c
serial.h
signals.h
solib.c
solib.h
source.c
sparc-nat.c
sparc-pinsn.c
sparc-stub.c
sparc-tdep.c
sparclite
stabsread.c
stabsread.h
stack.c
standalone.c
stuff.c
sun3-nat.c
sun386-nat.c
symfile.c
symfile.h
symm-tdep.c
symm-xdep.c
symmisc.c
symtab.c
symtab.h
tahoe-pinsn.c
target.c
target.h
terminal.h
testsuite
typeprint.c
typeprint.h
ultra3-nat.c
ultra3-xdep.c
umax-xdep.c
utils.c
valarith.c
valops.c
valprint.c
valprint.h
value.h
values.c
vax-pinsn.c
vx-share
xcoffexec.c
xcoffread.c
xcoffsolib.c
xcoffsolib.h
z8k-tdep.c
# Things which are explicitly *not* kept, for now.
# state.c - Not used at the moment, keep for reference (fnf)
# state.h - Not used at the moment, keep for reference (fnf)
Do-last:
echo Thawing away the \"chill\"...
# 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
echo Keeping chill stuff in $i
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
echo Thawing the \"chill\" out of $i...
cp $i new
sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
echo Caching $i in .Recover...
mv $i .Recover
fi
mv new $i
fi
done
echo Thawing the \"chill\" out of Makefile.in...
cp Makefile.in new
sed -e 's/$(srcdir)\/ch-exp.y//g' \
-e 's/${srcdir}\/ch-exp.y//g' \
-e 's/ch-exp.y//g' \
-e 's/ch-exp.tab.c//g' \
-e 's/ch-exp.tab.o//g' \
-e 's/ch-lang.h//g' \
-e 's/ch-lang.c//g' \
-e 's/ch-lang.o//g' \
-e 's/ch-typeprint.c//g' \
-e 's/ch-typeprint.o//g' \
-e 's/ch-valprint.c//g' \
-e 's/ch-valprint.o//g' \
< Makefile.in > new
if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
echo Caching Makefile.in in .Recover...
mv Makefile.in .Recover
fi
mv new Makefile.in
fi
# End of file.