]> Git Repo - binutils.git/blob - gas/.Sanitize
m32rx -> cygnus sanitization change.
[binutils.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 lose_these_too=""
19 for d in obsolete regress regress.m68k testscripts ; do
20     if [ -d $d ]; then
21         lose_these_too="${lose_these_too} $d"
22     fi
23 done
24
25 # Remember the current list of files in config.
26 if test -d config; then
27   gas_config_files=`cd config; echo *`
28 else
29   gas_config_files=
30 fi
31
32 # All files listed between the "Things-to-keep:" line and the
33 # "Do-last:" line will be kept.  All other files will be removed.
34 # Directories listed in this section will have their own Sanitize
35 # called.  Directories not listed will be removed in their entirety
36 # with rm -rf.
37
38 Things-to-keep:
39
40 CONTRIBUTORS
41 COPYING
42 ChangeLog
43 ChangeLog-9295
44 ChangeLog-9697
45 Makefile.am
46 Makefile.in
47 NEWS
48 README
49 README-vms
50 acconfig.h
51 acinclude.m4
52 aclocal.m4
53 app.c
54 as.c
55 as.h
56 asintl.h
57 atof-generic.c
58 bignum-copy.c
59 bignum.h
60 bit_fix.h
61 cgen.c
62 cgen.h
63 cond.c
64 config
65 config-gas.com
66 config.in
67 configure
68 configure.bat
69 configure.in
70 debug.c
71 dep-in.sed
72 depend.c
73 doc
74 ecoff.c
75 ecoff.h
76 ehopt.c
77 emul-target.h
78 emul.h
79 expr.c
80 expr.h
81 flonum-copy.c
82 flonum-konst.c
83 flonum-mult.c
84 flonum.h
85 frags.c
86 frags.h
87 gasp.c
88 gdbinit.in
89 hash.c
90 hash.h
91 input-file.c
92 input-file.h
93 input-scrub.c
94 itbl-lex.l
95 itbl-ops.c
96 itbl-ops.h
97 itbl-parse.y
98 link.cmd
99 listing.c
100 listing.h
101 literal.c
102 mac-as.r
103 macro.c
104 macro.h
105 makefile.vms
106 messages.c
107 mpw-config.in
108 mpw-make.sed
109 obj.h
110 output-file.c
111 output-file.h
112 po
113 read.c
114 read.h
115 sb.c
116 sb.h
117 stabs.c
118 stamp-h.in
119 struc-symbol.h
120 subsegs.c
121 subsegs.h
122 symbols.c
123 symbols.h
124 tc.h
125 testsuite
126 vmsconf.sh
127 write.c
128 write.h
129
130 Things-to-lose:
131
132
133
134 # The lines between the "Do-last:" line and the end of the file
135 # are executed as a /bin/sh shell script after everything else is
136 # done.
137
138 Do-last:
139
140 r5900_files="ChangeLog ChangeLog-9697 configure configure.in"
141 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
142         for i in $r5900_files ; do
143                 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
144                         if [ -n "${verbose}" ] ; then
145                                 echo Keeping r5900 stuff in $i
146                         fi
147                 fi
148         done
149 else
150         for i in $r5900_files ; do
151                 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
152                         if [ -n "${verbose}" ] ; then
153                                 echo Removing traces of \"r5900\" from $i...
154                         fi
155                         cp $i new
156                         sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
157                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
158                                 if [ -n "${verbose}" ] ; then
159                                         echo Caching $i in .Recover...
160                                 fi
161                                 mv $i .Recover
162                         fi
163                         mv new $i
164                 fi
165         done
166 fi
167
168 cygnus_files="ChangeLog ChangeLog-9697 configure.in configure"
169 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
170         for i in $cygnus_files ; do
171                 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
172                         if [ -n "${verbose}" ] ; then
173                                 echo Keeping cygnus stuff in $i
174                         fi
175                 fi
176         done
177 else
178         for i in $cygnus_files ; do
179                 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
180                         if [ -n "${verbose}" ] ; then
181                                 echo Removing traces of \"cygnus\" from $i...
182                         fi
183                         cp $i new
184                         sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
185                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
186                                 if [ -n "${verbose}" ] ; then
187                                         echo Caching $i in .Recover...
188                                 fi
189                                 mv $i .Recover
190                         fi
191                         mv new $i
192                 fi
193         done
194 fi
195
196 tx19_files="ChangeLog ChangeLog-9697"
197 if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
198         for i in $tx19_files ; do
199                 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
200                         if [ -n "${verbose}" ] ; then
201                                 echo Keeping tx19 stuff in $i
202                         fi
203                 fi
204         done
205 else
206         for i in $tx19_files ; do
207                 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
208                         if [ -n "${verbose}" ] ; then
209                                 echo Removing traces of \"tx19\" from $i...
210                         fi
211                         cp $i new
212                         sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new
213                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
214                                 if [ -n "${verbose}" ] ; then
215                                         echo Caching $i in .Recover...
216                                 fi
217                                 mv $i .Recover
218                         fi
219                         mv new $i
220                 fi
221         done
222 fi
223
224 tx49_files="ChangeLog ChangeLog-9697"
225 if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
226         for i in $tx49_files ; do
227                 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
228                         if [ -n "${verbose}" ] ; then
229                                 echo Keeping tx49 stuff in $i
230                         fi
231                 fi
232         done
233 else
234         for i in $tx49_files ; do
235                 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
236                         if [ -n "${verbose}" ] ; then
237                                 echo Removing traces of \"tx49\" from $i...
238                         fi
239                         cp $i new
240                         sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
241                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
242                                 if [ -n "${verbose}" ] ; then
243                                         echo Caching $i in .Recover...
244                                 fi
245                                 mv $i .Recover
246                         fi
247                         mv new $i
248                 fi
249         done
250 fi
251
252 tic80_files="ChangeLog ChangeLog-9697 configure.in configure"
253 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
254         for i in $tic80_files ; do
255                 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
256                         if [ -n "${verbose}" ] ; then
257                                 echo Keeping tic80 stuff in $i
258                         fi
259                 fi
260         done
261 else
262         for i in $tic80_files ; do
263                 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
264                         if [ -n "${verbose}" ] ; then
265                                 echo Removing traces of \"tic80\" from $i...
266                         fi
267                         cp $i new
268                         sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
269                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
270                                 if [ -n "${verbose}" ] ; then
271                                         echo Caching $i in .Recover...
272                                 fi
273                                 mv $i .Recover
274                         fi
275                         mv new $i
276                 fi
277         done
278 fi
279
280 fr30_files="ChangeLog configure.in configure Makefile.am Makefile.in"
281 if ( echo $* | grep keep\-fr30 > /dev/null ) ; then
282         for i in $fr30_files ; do
283                 if test ! -d $i && (grep sanitize-fr30 $i > /dev/null) ; then
284                         if [ -n "${verbose}" ] ; then
285                                 echo Keeping fr30 stuff in $i
286                         fi
287                 fi
288         done
289 else
290         for i in $fr30_files ; do
291                 if test ! -d $i && (grep sanitize-fr30 $i > /dev/null) ; then
292                         if [ -n "${verbose}" ] ; then
293                                 echo Removing traces of \"fr30\" from $i...
294                         fi
295                         cp $i new
296                         sed '/start\-sanitize\-fr30/,/end-\sanitize\-fr30/d' < $i > new
297                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
298                                 if [ -n "${verbose}" ] ; then
299                                         echo Caching $i in .Recover...
300                                 fi
301                                 mv $i .Recover
302                         fi
303                         mv new $i
304                 fi
305         done
306 fi
307
308 sky_files="ChangeLog configure.in configure"
309 if ( echo $* | grep keep\-sky > /dev/null ) ; then
310         for i in $sky_files ; do
311                 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
312                         if [ -n "${verbose}" ] ; then
313                                 echo Keeping sky stuff in $i
314                         fi
315                 fi
316         done
317 else
318         for i in $sky_files ; do
319                 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
320                         if [ -n "${verbose}" ] ; then
321                                 echo Removing traces of \"sky\" from $i...
322                         fi
323                         cp $i new
324                         sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
325                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
326                                 if [ -n "${verbose}" ] ; then
327                                         echo Caching $i in .Recover...
328                                 fi
329                                 mv $i .Recover
330                         fi
331                         mv new $i
332                 fi
333         done
334 fi
335
336 vr4320_files="ChangeLog"
337 if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
338         for i in $vr4320_files ; do
339                 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
340                         if [ -n "${verbose}" ] ; then
341                                 echo Keeping vr4320 stuff in $i
342                         fi
343                 fi
344         done
345 else
346         for i in $vr4320_files ; do
347                 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
348                         if [ -n "${verbose}" ] ; then
349                                 echo Removing traces of \"vr4320\" from $i...
350                         fi
351                         cp $i new
352                         sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/d' < $i > new
353                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
354                                 if [ -n "${verbose}" ] ; then
355                                         echo Caching $i in .Recover...
356                                 fi
357                                 mv $i .Recover
358                         fi
359                         mv new $i
360                 fi
361         done
362 fi
363
364 branchbug4011_files="ChangeLog"
365 if ( echo $* | grep keep\-branchbug4011 > /dev/null ) ; then
366         for i in $branchbug4011_files ; do
367                 if test ! -d $i && (grep sanitize-branchbug4011 $i > /dev/null) ; then
368                         if [ -n "${verbose}" ] ; then
369                                 echo Keeping branchbug4011 stuff in $i
370                         fi
371                 fi
372         done
373 else
374         for i in $branchbug4011_files ; do
375                 if test -r $i && (grep sanitize-branchbug4011 $i > /dev/null) ; then
376                         if [ -n "${verbose}" ] ; then
377                                 echo Removing traces of \"branchbug4011\" from $i...
378                         fi
379                         cp $i new
380                         sed '/start\-sanitize\-branchbug4011/,/end\-sanitize\-branchbug4011/d' < $i > new
381                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
382                                 if [ -n "${verbose}" ] ; then
383                                         echo Caching $i in .Recover...
384                                 fi
385                                 mv $i .Recover
386                         fi
387                         mv new $i
388                 fi
389         done
390 fi
391
392 vr4xxx_files="ChangeLog"
393 if ( echo $* | grep keep\-vr4xxx > /dev/null ) ; then
394         for i in $vr4xxx_files ; do
395                 if test ! -d $i && (grep sanitize-vr4xxx $i > /dev/null) ; then
396                         if [ -n "${verbose}" ] ; then
397                                 echo Keeping vr4xxx stuff in $i
398                         fi
399                 fi
400         done
401 else
402         for i in $vr4xxx_files ; do
403                 if test -r $i && (grep sanitize-vr4xxx $i > /dev/null) ; then
404                         if [ -n "${verbose}" ] ; then
405                                 echo Removing traces of \"vr4xxx\" from $i...
406                         fi
407                         cp $i new
408                         sed '/start\-sanitize\-vr4xxx/,/end\-sanitize\-vr4xxx/d' < $i > new
409                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
410                                 if [ -n "${verbose}" ] ; then
411                                         echo Caching $i in .Recover...
412                                 fi
413                                 mv $i .Recover
414                         fi
415                         mv new $i
416                 fi
417         done
418 fi
419
420 beos_files="ChangeLog configure.in configure"
421 if ( echo $* | grep keep\-beos > /dev/null ) ; then
422         for i in $beos_files ; do
423                 if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
424                         if [ -n "${verbose}" ] ; then
425                                 echo Keeping beos stuff in $i
426                         fi
427                 fi
428         done
429 else
430         for i in $beos_files ; do
431                 if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
432                         if [ -n "${verbose}" ] ; then
433                                 echo Removing traces of \"beos\" from $i...
434                         fi
435                         cp $i new
436                         sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/d' < $i > new
437                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
438                                 if [ -n "${verbose}" ] ; then
439                                         echo Caching $i in .Recover...
440                                 fi
441                                 mv $i .Recover
442                         fi
443                         mv new $i
444                 fi
445         done
446 fi
447
448 for i in * ; do
449   if test ! -d $i && (grep sanitize $i > /dev/null) ; then
450     echo '***' Some mentions of Sanitize are still left in gas/$i! 1>&2
451   fi
452 done
453
454 for lost in .. $lose_these_too; do
455   if test $lost != ..; then
456     for i in Makefile.am Makefile.in configure.in configure; do
457       if fgrep $lost $i >/dev/null 2>&1; then
458         echo '***' File $lost was sanitized out but is still mentioned in gas/$i 1>&2
459       fi
460     done
461   fi
462 done
463
464 # Check each file we removed from gas/config, and make sure it is not
465 # mentioned in Makefiles or configure files.
466 for lost in .. $gas_config_files; do
467   if test $lost != .. && test $lost != CVS; then
468     if test -f config/$lost; then
469       :
470     else
471       for i in Makefile.am Makefile.in configure.in configure; do
472         if fgrep $lost $i >/dev/null 2>&1; then
473           echo '***' File gas/config/$lost was sanitized out but is still mentioned in gas/$i 1>&2
474         fi
475       done
476     fi
477   fi
478 done
479
480 # This must come after all other sanitizations.  Re-sanitize the .pot
481 # file.
482 if [ -n "${verbose}" ]; then
483    echo Re-computing files for gettext ...
484 fi
485
486 if [ -n "${safe}" -a ! -f po/.Recover/POTFILES.in ]; then
487    if [ -n "${verbose}" ]; then
488       echo Caching po/POTFILES.in in .Recover...
489    fi
490    mv po/POTFILES.in po/.Recover
491 fi
492 find . -name '*.[ch]' | sed -e 's,^\./,,' > po/POTFILES.in
493
494 if [ -n "${safe}" -a ! -f po/.Recover/gas.pot ]; then
495    if [ -n "${verbose}" ]; then
496       echo Caching po/gas.pot in .Recover...
497    fi
498    mv po/gas.pot po/.Recover
499 fi
500 # If this fails, Sanitization must fail.
501 xgettext -c -k_ -kN_ -f po/POTFILES.in -o po/gas.pot || exit 1
502
503 # eof
This page took 0.053071 seconds and 4 git commands to generate.