Remove SH3e sanitization.
[deliverable/binutils-gdb.git] / gas / .Sanitize
1 # .Sanitize for devo/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 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
22 # with rm -rf.
23
24 Things-to-keep:
25
26 CONTRIBUTORS
27 COPYING
28 ChangeLog
29 ChangeLog.1
30 Makefile.in
31 NEWS
32 NOTES
33 NOTES.config
34 README
35 README-quirks
36 README-vms
37 README.coff
38 README.rich
39 acconfig.h
40 aclocal.m4
41 app.c
42 as.c
43 as.h
44 atof-generic.c
45 bignum-copy.c
46 bignum.h
47 bit_fix.h
48 cond.c
49 conf.in
50 config
51 config-gas.com
52 configure
53 configure.bat
54 configure.in
55 debug.c
56 doc
57 ecoff.c
58 ecoff.h
59 emul-target.h
60 emul.h
61 expr.c
62 expr.h
63 flonum-copy.c
64 flonum-konst.c
65 flonum-mult.c
66 flonum.h
67 frags.c
68 frags.h
69 gasp.c
70 gdbinit.in
71 hash.c
72 hash.h
73 input-file.c
74 input-file.h
75 input-scrub.c
76 link.cmd
77 listing.c
78 listing.h
79 literal.c
80 mac-as.r
81 macro.c
82 macro.h
83 messages.c
84 mpw-config.in
85 mpw-make.sed
86 obj.h
87 output-file.c
88 output-file.h
89 read.c
90 read.h
91 sb.c
92 sb.h
93 stabs.c
94 struc-symbol.h
95 subsegs.c
96 subsegs.h
97 symbols.c
98 symbols.h
99 tc.h
100 testsuite
101 vmsconf.sh
102 write.c
103 write.h
104 xmalloc.c
105
106 Things-to-lose:
107
108 Do-last:
109
110 i960xl_files="ChangeLog ChangeLog.1"
111 if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
112 if [ -n "${verbose}" ] ; then
113 echo Keeping i960xl stuff in $i960xl_files.
114 fi
115 else
116 if [ -n "${verbose}" ]; then
117 echo -n Cleaning i960xl in `pwd`:
118 fi
119 for f in $i960xl_files ; do
120 if [ -n "${verbose}" ] ; then
121 echo -n " " $f
122 fi
123 sed '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' < $f > new
124 if [ -n "${safe}" ] ; then
125 mv $f .Recover
126 fi
127 mv new $f
128 done
129 if [ -n "${verbose}" ]; then
130 echo ""
131 fi
132 fi
133
134 rce_files="configure.in configure ChangeLog Makefile.in ChangeLog.1"
135
136 if ( echo $* | grep keep\-rce > /dev/null ) ; then
137 for i in $rce_files ; do
138 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
139 if [ -n "${verbose}" ] ; then
140 echo Keeping rce stuff in $i
141 fi
142 fi
143 done
144 else
145 for i in $rce_files ; do
146 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
147 if [ -n "${verbose}" ] ; then
148 echo Removing traces of \"rce\" from $i...
149 fi
150 cp $i new
151 sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
152 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
153 if [ -n "${verbose}" ] ; then
154 echo Caching $i in .Recover...
155 fi
156 mv $i .Recover
157 fi
158 mv new $i
159 fi
160 done
161 fi
162
163 arc_files="ChangeLog configure.in configure Makefile.in ChangeLog.1"
164 if ( echo $* | grep keep\-arc > /dev/null ) ; then
165 for i in $arc_files ; do
166 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
167 if [ -n "${verbose}" ] ; then
168 echo Keeping arc stuff in $i
169 fi
170 fi
171 done
172 else
173 for i in $arc_files ; do
174 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
175 if [ -n "${verbose}" ] ; then
176 echo Removing traces of \"arc\" from $i...
177 fi
178 cp $i new
179 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
180 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
181 if [ -n "${verbose}" ] ; then
182 echo Caching $i in .Recover...
183 fi
184 mv $i .Recover
185 fi
186 mv new $i
187 fi
188 done
189 fi
190
191 if ( echo $* | grep keep\-gm > /dev/null ) ; then
192 for i in * ; do
193 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
194 if [ -n "${verbose}" ] ; then
195 echo Keeping gm stuff in $i
196 fi
197 fi
198 done
199 else
200 for i in * ; do
201 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
202 if [ -n "${verbose}" ] ; then
203 echo Removing traces of \"gm\" from $i...
204 fi
205 cp $i new
206 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
207 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
208 if [ -n "${verbose}" ] ; then
209 echo Caching $i in .Recover...
210 fi
211 mv $i .Recover
212 fi
213 mv new $i
214 fi
215 done
216 fi
217
218 for i in * ; do
219 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
220 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
221 fi
222 done
223
224 #
225 # End of file.
This page took 0.052529 seconds and 5 git commands to generate.