* remote-mips.c: New file; implements MIPS remote debugging
[deliverable/binutils-gdb.git] / gdb / config / .Sanitize
CommitLineData
2d797c08
RP
1# Each directory to survive it's way into a release will need a file
2# like this one called "./.Sanitize". All keyword lines must exist,
3# and must exist in the order specified by this file. Each directory
4# in the tree will be processed, top down, in the following order.
5
6# Hash started lines like this one are comments and will be deleted
7# before anything else is done. Blank lines will also be squashed
8# out.
9
10# The lines between the "Do-first:" line and the "Things-to-keep:"
11# line are executed as a /bin/sh shell script before anything else is
12# done in this
13
14Do-first:
15
2d797c08
RP
16# All files listed between the "Things-to-keep:" line and the
17# "Files-to-sed:" line will be kept. All other files will be removed.
18# Directories listed in this section will have their own Sanitize
19# called. Directories not listed will be removed in their entirety
20# with rm -rf.
21
22Things-to-keep:
23
fe7ca711 243b1.mh
fe7ca711 253b1.mt
fe7ca711 26a29k-kern.mt
92de157b 27a29k-udi.mt
ede23f3b
JG
28a29k.mt
29altos.mh
fe7ca711 30altos.mt
ede23f3b 31amix.mh
fe7ca711 32amix.mt
3c64303a 33apollo68b.mh
ede23f3b
JG
34apollo68v.mh
35arm.mh
fe7ca711 36arm.mt
ede23f3b 37bigmips.mh
fe7ca711 38bigmips.mt
ede23f3b 39convex.mh
fe7ca711 40convex.mt
ede23f3b 41decstation.mh
fe7ca711 42decstation.mt
ede23f3b 43delta88.mh
fe7ca711 44delta88.mt
498f1df0 45es1800.mt
4025fb37 46go32.mh
f48dd41c 47h8300hms.mt
ede23f3b 48hp300bsd.mh
fe7ca711 49hp300bsd.mt
ede23f3b 50hp300hpux.mh
fe7ca711 51hp300hpux.mt
76b731f9
SG
52hppabsd.mh
53hppabsd.mt
54hppahpux.mh
55hppahpux.mt
fe7ca711 56i386aout.mt
534c231e
JG
57i386bsd.mh
58i386bsd.mt
ede23f3b
JG
59i386mach.mh
60i386sco.mh
b243fc7e 61i386sco4.mh
5c820c19
JG
62i386sol2.mh
63i386sol2.mt
ede23f3b
JG
64i386v.mh
65i386v.mt
ede23f3b 66i386v32.mh
ede23f3b
JG
67i386v4.mh
68i386v4.mt
c2a0f1cb 69idt.mt
ede23f3b 70irix3.mh
fe7ca711 71irix3.mt
ede23f3b
JG
72irix4.mh
73isi.mh
fe7ca711 74isi.mt
71da9fdc
PB
75linux.mh
76linux.mt
ede23f3b 77littlemips.mh
fe7ca711 78littlemips.mt
30fd8619
JG
79m68k-noun.mt
80m68k-un.mt
ede23f3b 81m88k.mh
fe7ca711 82m88k.mt
ede23f3b 83merlin.mh
fe7ca711 84merlin.mt
5435f927 85ncr3000.mh
a74c9110 86ncr3000.mt
ede23f3b 87news.mh
fe7ca711 88news.mt
ede23f3b 89news1000.mh
fe7ca711 90nindy960.mt
ede23f3b 91none.mh
fe7ca711 92none.mt
ede23f3b 93np1.mh
fe7ca711
SC
94np1.mt
95os68k.mt
ede23f3b 96pn.mh
fe7ca711 97pn.mt
ede23f3b 98pyramid.mh
fe7ca711 99pyramid.mt
ede23f3b 100rs6000.mh
fe7ca711 101rs6000.mt
ede23f3b 102rtbsd.mh
30fd8619
JG
103sparc-noun.mt
104sparc-un.mt
3c64303a 105st2000.mt
ede23f3b 106sun2os3.mh
fe7ca711 107sun2os3.mt
ede23f3b 108sun2os4.mh
fe7ca711 109sun2os4.mt
ede23f3b 110sun386.mh
fe7ca711 111sun386.mt
ede23f3b 112sun3os3.mh
fe7ca711 113sun3os3.mt
ede23f3b 114sun3os4.mh
fe7ca711 115sun3os4.mt
ede23f3b 116sun4os4.mh
fe7ca711 117sun4os4.mt
fa33785d
SG
118sun4sol2.mh
119sun4sol2.mt
ede23f3b 120symmetry.mh
fe7ca711 121symmetry.mt
ede23f3b 122tahoe.mh
fe7ca711 123tahoe.mt
ede23f3b 124ultra3.mh
fe7ca711 125ultra3.mt
ede23f3b 126umax.mh
fe7ca711
SC
127umax.mt
128vax.mt
ede23f3b
JG
129vaxbsd.mh
130vaxult.mh
fe7ca711
SC
131vxworks68.mt
132vxworks960.mt
2d797c08
RP
133
134Do-last:
135
f48dd41c
JG
136echo Stimulating away the simulator...
137
138if ( echo $* | grep keep\-sim > /dev/null ) ; then
139 echo Keeping simulator in h8300hms.mt
140else
141 for i in h8300hms.mt z8ksim.mt; do
142 if test -f $i ; then
143 echo Tickling the \"sim\" out of $i...
144 sed -e 's| remote-sim.o .*||' \
145 -e 's| and H8 simulator||' \
146 -e 's| Z8000 simulator| Z8000|' \
147 -e 's| remote-z8k.o ../sim/z8k/libsim.a||' \
148 <$i >new
149 if grep sim new ; then
150 echo '***' Not funny. "Didn't work."
151 else
152 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
153 echo Caching $i in .Recover...
154 mv $i .Recover
155 fi
156 mv new $i
157 fi
158 fi
159 done
160fi
161
2d797c08 162# End of file.
This page took 0.076997 seconds and 4 git commands to generate.