Sanitize out D30V stuff.
[deliverable/binutils-gdb.git] / gas / testsuite / .Sanitize
1 # Sanitize.in for gas test suite.
2 #
3
4 # Each directory to survive it's way into a release will need a file
5 # like this one called "./.Sanitize". All keyword lines must exist,
6 # and must exist in the order specified by this file. Each directory
7 # in the tree will be processed, top down, in the following order.
8
9 # Hash started lines like this one are comments and will be deleted
10 # before anything else is done. Blank lines will also be squashed
11 # out.
12
13 # The lines between the "Do-first:" line and the "Things-to-keep:"
14 # line are executed as a /bin/sh shell script before anything else is
15 # done in this
16
17 Do-first:
18
19
20 # All files listed between the "Things-to-keep:" line and the
21 # "Files-to-sed:" line will be kept. All other files will be removed.
22 # Directories listed in this section will have their own Sanitize
23 # called. Directories not listed will be removed in their entirety
24 # with rm -rf.
25
26 Things-to-keep:
27
28 ChangeLog
29 config
30 gas
31 gasp
32 lib
33
34 Things-to-lose:
35
36
37
38 Do-last:
39
40 # Don't try to clean directories here, as the 'mv' command will fail.
41 # Also, grep fails on NFS mounted directories.
42
43 if [ -n "${verbose}" ] ; then
44 echo Processing \"arc\"...
45 fi
46
47 arc_files="ChangeLog"
48 if ( echo $* | grep keep\-arc > /dev/null ) ; then
49 for i in $arc_files ; do
50 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
51 if [ -n "${verbose}" ] ; then
52 echo Keeping arc stuff in $i
53 fi
54 fi
55 done
56 else
57 for i in $arc_files ; do
58 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
59 if [ -n "${verbose}" ] ; then
60 echo Removing traces of \"arc\" from $i...
61 fi
62 cp $i new
63 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
64 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
65 if [ -n "${verbose}" ] ; then
66 echo Caching $i in .Recover...
67 fi
68 mv $i .Recover
69 fi
70 mv new $i
71 fi
72 done
73 fi
74
75 if [ -n "${verbose}" ] ; then
76 echo Processing \"v850\"...
77 fi
78
79 v850_files="ChangeLog"
80 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
81 for i in $v850_files ; do
82 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
83 if [ -n "${verbose}" ] ; then
84 echo Keeping v850 stuff in $i
85 fi
86 fi
87 done
88 else
89 for i in $v850_files ; do
90 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
91 if [ -n "${verbose}" ] ; then
92 echo Removing traces of \"v850\" from $i...
93 fi
94 cp $i new
95 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
96 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
97 if [ -n "${verbose}" ] ; then
98 echo Caching $i in .Recover...
99 fi
100 mv $i .Recover
101 fi
102 mv new $i
103 fi
104 done
105 fi
106
107 tic80_files="ChangeLog"
108 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
109 for i in $tic80_files ; do
110 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
111 if [ -n "${verbose}" ] ; then
112 echo Keeping tic80 stuff in $i
113 fi
114 fi
115 done
116 else
117 for i in $tic80_files ; do
118 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
119 if [ -n "${verbose}" ] ; then
120 echo Removing traces of \"tic80\" from $i...
121 fi
122 cp $i new
123 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
124 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
125 if [ -n "${verbose}" ] ; then
126 echo Caching $i in .Recover...
127 fi
128 mv $i .Recover
129 fi
130 mv new $i
131 fi
132 done
133 fi
134
135 d30v_files="ChangeLog"
136 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
137 for i in $d30v_files ; do
138 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
139 if [ -n "${verbose}" ] ; then
140 echo Keeping d30v stuff in $i
141 fi
142 fi
143 done
144 else
145 for i in $d30v_files ; do
146 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
147 if [ -n "${verbose}" ] ; then
148 echo Removing traces of \"d30v\" from $i...
149 fi
150 cp $i new
151 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/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 # End of file.
This page took 0.039407 seconds and 5 git commands to generate.