]>
Commit | Line | Data |
---|---|---|
08df3284 | 1 | # .Sanitize for gdb/testsuite/config. |
bf3d2b75 | 2 | |
08df3284 | 3 | # Each directory to survive its way into a release will need a file |
bf3d2b75 MW |
4 | # like this one called "./.Sanitize". All keyword lines must exist, |
5 | # and must exist in the order specified by this file. Each directory | |
6 | # in the tree will be processed, top down, in the following order. | |
7 | ||
8 | # Hash started lines like this one are comments and will be deleted | |
9 | # before anything else is done. Blank lines will also be squashed | |
10 | # out. | |
11 | ||
bf3d2b75 MW |
12 | # All files listed between the "Things-to-keep:" line and the |
13 | # "Do-last:" line will be kept. All other files will be removed. | |
14 | # Directories listed in this section will have their own Sanitize | |
15 | # called. Directories not listed will be removed in their entirety | |
16 | # with rm -rf. | |
17 | ||
7e69daa7 MS |
18 | Do-first: |
19 | ||
05a21390 | 20 | m32r_files="m32r.exp m32r-stub.exp" |
7e69daa7 MS |
21 | |
22 | if ( echo $* | grep keep\-m32r > /dev/null ) ; then | |
23 | keep_these_too="${m32r_files} ${keep_these_too}" | |
24 | if [ -n "${verbose}" ] ; then | |
25 | echo Keeping ${m32r_files} | |
26 | fi | |
27 | else | |
28 | lose_these_too="${m32r_files} ${lose_these_too}" | |
29 | if [ -n "${verbose}" ] ; then | |
30 | echo Deleting ${m32r_files} | |
31 | fi | |
32 | fi | |
33 | ||
bf3d2b75 MW |
34 | Things-to-keep: |
35 | ||
2a24f7ff | 36 | abug.exp |
43967a76 | 37 | cpu32bug.exp |
1b186bc3 | 38 | est.exp |
e72d8622 | 39 | gdbserver.exp |
7c0fe2eb | 40 | hmsirom.exp |
7abd80b9 | 41 | hppro.exp |
05a21390 BM |
42 | mips.exp |
43 | mips-idt.exp | |
7abd80b9 | 44 | monitor.exp |
c1aa3a2f | 45 | mt-a29k-udi |
c1aa3a2f FF |
46 | mt-i386-aout |
47 | mt-i960-nindy | |
08df3284 SS |
48 | mt-lynx |
49 | mt-m68k | |
50 | mt-mips-ecoff | |
6b55e5e3 | 51 | mt-netware |
08df3284 | 52 | mt-slite |
c1aa3a2f | 53 | mt-sparc-aout |
08df3284 SS |
54 | mt-unix |
55 | mt-vxworks | |
662bd263 | 56 | netware.exp |
05a21390 | 57 | nind.exp |
1b186bc3 | 58 | rom68k.exp |
b6f32a5b | 59 | sh.exp |
05a21390 BM |
60 | sim.exp |
61 | slite.exp | |
62 | udi.exp | |
63 | unix.exp | |
83eab3d6 | 64 | unknown.exp |
40ac1624 | 65 | vr4300.exp |
05a21390 | 66 | vx.exp |
cea0f6fc | 67 | vxworks.exp |
ac72325f | 68 | vxworks29k.exp |
bf3d2b75 | 69 | |
87756e15 RP |
70 | Things-to-lose: |
71 | ||
05a21390 BM |
72 | d10v.exp |
73 | sparclet-old.exp | |
74 | sparclet.exp | |
775d4a40 | 75 | |
bf3d2b75 MW |
76 | # The lines between the "Do-last:" line and the end of the file |
77 | # are executed as a /bin/sh shell script after everything else is | |
78 | # done. | |
79 | ||
80 | Do-last: | |
bf3d2b75 MW |
81 | |
82 | # eof |