]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/testsuite/gas/.Sanitize
fix sanitization for gettext changes
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / .Sanitize
1 # .Sanitize for devo/gas/testsuite/gas
2
3 # Each directory to survive its way into a release will need a file
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
12 # The lines between the "Do-first:" line and the "Things-to-keep:"
13 # line are executed as a /bin/sh shell script before anything else is
14 # done in this directory.
15
16 Do-first:
17
18 for d in gasp i386-bsd ieee.fp mn10x00 ; do
19 if [ -d $d ]; then
20 lose_these_too="$d ${lose_these_too}"
21 fi
22 done
23
24 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
25 keep_these_too="tic80 ${keep_these_too}"
26 else
27 lose_these_too="tic80 ${lose_these_too}"
28 fi
29
30 if ( echo $* | grep keep\-sky > /dev/null ) ; then
31 keep_these_too="dvp ${keep_these_too}"
32 else
33 lose_these_too="dvp ${lose_these_too}"
34 fi
35
36 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
37 keep_these_too="d30v ${keep_these_too}"
38 else
39 lose_these_too="d30v ${lose_these_too}"
40 fi
41
42 # All files listed between the "Things-to-keep:" line and the
43 # "Do-last:" line will be kept. All other files will be removed.
44 # Directories listed in this section will have their own Sanitize
45 # called. Directories not listed will be removed in their entirety
46 # with rm -rf.
47
48 Things-to-keep:
49
50 all
51 alpha
52 arc
53 arm
54 h8300
55 hppa
56 i386
57 ieee-fp
58 m32r
59 m68k
60 m68k-coff
61 m88k
62 macros
63 mips
64 mn10200
65 mn10300
66 mri
67 ppc
68 sh
69 sparc
70 sparc-solaris
71 sun4
72 template
73 v850
74 vax
75
76 Things-to-lose:
77
78
79
80 # The lines between the "Do-last:" line and the end of the file
81 # are executed as a /bin/sh shell script after everything else is
82 # done.
83
84 Do-last:
85
86 # eof