am33 sanitization changes.
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mn10300 / .Sanitize
1 # Sanitize.in for devo.
2 # $Id$
3 #
4
5 # Each directory to survive it's way into a release will need a file
6 # like this one called "./.Sanitize". All keyword lines must exist,
7 # and must exist in the order specified by this file. Each directory
8 # in the tree will be processed, top down, in the following order.
9
10 # Hash started lines like this one are comments and will be deleted
11 # before anything else is done. Blank lines will also be squashed
12 # out.
13
14 # The lines between the "Do-first:" line and the "Things-to-keep:"
15 # line are executed as a /bin/sh shell script before anything else is
16 # done in this
17
18 Do-first:
19
20 cygnus_files="am33.s am33_2.s am33_3.s am33_4.s am33_5.s am33_6.s am33_7.s am33_8.s"
21
22 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
23 keep_these_too="${cygnus_files} ${keep_these_too}"
24 else
25 lose_these_too="${cygnus_files} ${lose_these_too}"
26 fi
27
28 # All files listed between the "Things-to-keep:" line and the
29 # "Files-to-sed:" line will be kept. All other files will be removed.
30 # Directories listed in this section will have their own Sanitize
31 # called. Directories not listed will be removed in their entirety
32 # with rm -rf.
33
34 Things-to-keep:
35 add.s
36 basic.exp
37 bcc.s
38 bit.s
39 cmp.s
40 ext.s
41 extend.s
42 logical.s
43 loop.s
44 mov1.s
45 mov2.s
46 mov3.s
47 mov4.s
48 movbu.s
49 movhu.s
50 movm.s
51 muldiv.s
52 other.s
53 shift.s
54 sub.s
55 udf.s
56
57 Things-to-lose:
58
59 Do-last:
60
61 cygnus_files="basic.exp"
62 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
63 for i in $cygnus_files ; do
64 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
65 if [ -n "${verbose}" ] ; then
66 echo Keeping cygnus stuff in $i
67 fi
68 fi
69 done
70 else
71 for i in $cygnus_files ; do
72 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
73 if [ -n "${verbose}" ] ; then
74 echo Removing traces of \"cygnus\" from $i...
75 fi
76 cp $i new
77 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
78 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
79 if [ -n "${verbose}" ] ; then
80 echo Caching $i in .Recover...
81 fi
82 mv $i .Recover
83 fi
84 mv new $i
85 fi
86 done
87 fi
88
89 # End of file.
This page took 0.054926 seconds and 5 git commands to generate.