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