Removed use of V850_OPERNAD_ADJUST_SHORT_MEMORY.
[deliverable/binutils-gdb.git] / .Sanitize
CommitLineData
694ea471 1########################
3a58da89
KR
2#
3# H H EEEEEE Y Y !!
4# H H E Y Y !!
5# H H E Y Y !!
6# H H E Y !!
7# HHHHHH EEEEE Y !!
8# H H E Y !!
9# H H E Y !!
10# H H E Y
11# H H EEEEEE Y !!
12#
694ea471
KR
13# YO! READ ME!!!!!!!!!
14# If you're about to add a file or directory which isn't checked out as part
15# of every module in devo (e.g., if "cvs co gas+utils" won't get it, or if
16# "cvs co gcc" won't get it), then don't, Don't, DON'T add it to the regular
17# things-to-keep or things-to-lose sections. Instead, add it to the setting
18# of keep_these_too or lose_these_too before those variables are rescanned
19# to check for the existence of the items listed in them.
20#
21# Otherwise, somebody will check out some package that doesn't include your
22# new file, and will get warnings from Sanitize when everything is really
23# okay. You don't want to get people in the habit of ignoring complaints from
24# Sanitize, do you? No, I didn't think so.
9719168f
DE
25#
26# If you do add a file to the regular things-to-keep section, don't forget
27# to add the corresponding entry to the devo-support entry (or whatever) in
28# the modules file.
29#
694ea471
KR
30########################
31
3a58da89
KR
32# .Sanitize for devo.
33
5db7ecb7 34# Each directory to survive its way into a release will need a file
a93b3c77
RP
35# like this one called "./.Sanitize". All keyword lines must exist,
36# and must exist in the order specified by this file. Each directory
37# in the tree will be processed, top down, in the following order.
38
39# Hash started lines like this one are comments and will be deleted
40# before anything else is done. Blank lines will also be squashed
41# out.
42
43# The lines between the "Do-first:" line and the "Things-to-keep:"
44# line are executed as a /bin/sh shell script before anything else is
43e36dd2 45# done in this directory.
a93b3c77
RP
46
47Do-first:
48
1ed0529e 49keep_these_too="${keep_these_too} .cvsignore CYGNUS autoconf
22dd55c2 50 apache bash
e03b0bca 51 bfd binutils byacc cvs deja-gnu dejagnu diff dosrel dvips emacs emacs19
93dafa36 52 examples expect fileutils findutils flex
22dd55c2 53 gas gawk gcc gdb gdbm gdbtest glob gprof grep grez groff guile gzip
e8255dfe 54 include inet install-sh ispell
93dafa36 55 ld less libg++ libgcc libgloss libiberty libio librx libstdc++
ff290baf 56 m4 make mkinstalldirs mmalloc move-if-change newlib ncurses opcodes
f255b19d 57 pagas patch perl prms
22dd55c2 58 rcs readline sed send-pr shellutils sim tar textutils time
85f903e9 59 texinfo tgas utils uudecode wdiff xiberty
c9b727f9 60 configure.bat makeall.bat setup.com makefile.vms winsup
6079ad78 61 mpw-README mpw-configure mpw-config.in mpw-build.in mpw-install
6e68a23e 62 ltconfig ltmain.sh missing ylwrap"
694ea471
KR
63
64lose_these_too="${lose_these_too} testsuite"
e03b0bca 65
2822305b 66cygnus_files="release release-info build-all.mk test-build.mk COPYING.NEWLIB"
96c805d8 67
7d0eab7b 68if ( echo $* | grep keep\-cygnus > /dev/null) ; then
96c805d8 69 keep_these_too="${keep_these_too} ${cygnus_files}"
80cad9cc 70else
96c805d8 71 lose_these_too="${lose_these_too} ${cygnus_files}"
7d0eab7b
DZ
72fi
73
5452eb0b 74gdbtk_files="tcl tk itcl tix"
fc5a05e9
SS
75
76if ( echo $* | grep lose\-gdbtk > /dev/null) ; then
77 lose_these_too="${lose_these_too} ${gdbtk_files}"
78 if [ -n "${verbose}" ] ; then
79 echo Deleting ${gdbtk_files}
80 fi
81else
82 keep_these_too="${keep_these_too} ${gdbtk_files}"
83 if [ -n "${verbose}" ] ; then
84 echo Keeping ${gdbtk_files}
85 fi
5db7ecb7 86fi
7d0eab7b 87
77cbdd35 88# This is for newlib net releases.
c8205c90 89newlib_file="COPYING.NEWLIB"
77cbdd35 90
c8205c90
DE
91if (echo $* | grep keep\-newlib > /dev/null) ; then
92 if (echo $* | grep -v keep\-cygnus > /dev/null) ; then
93 keep_these_too="${keep_these_too} ${newlib_file}"
94 lose_these_too="`echo ${lose_these_too} | sed -e s/${newlib_file}//`"
95 fi
77cbdd35 96else
c8205c90 97 true; # Let keep-cygnus handle it.
77cbdd35
DE
98fi
99
37b7d77c
TT
100# IDK releases don't include files which only matter to CDK.
101inet_files="COPYING.LIB config config-ml.in etc symlink-tree"
102
103if (echo $* | grep keep\-inet > /dev/null); then
104 lose_these_too="${lose_these_too} ${inet_files}"
105else
106 keep_these_too="${keep_these_too} ${inet_files}"
107fi
108
eebe454c
TT
109ide_files="itcl libide vmake"
110
111if (echo $* | grep keep\-ide > /dev/null); then
6c872cd2 112 keep_these_too="${keep_these_too} ${ide_files}"
eebe454c
TT
113 test -n "$verbose" && echo Keeping ${ide_files}
114else
6c872cd2 115 lose_these_too="${lose_these_too} ${ide_files}"
eebe454c
TT
116fi
117
37b7d77c 118
e03b0bca
KR
119# This top-level directory is special. We often check out only subsets
120# of this directory, and complaining about directories or files we didn't
121# check out just gets obnoxious.
122
694ea471 123list="`(for i in ${keep_these_too}; do echo $i ; done) | sort -u`"
e03b0bca
KR
124keep_these_too=
125
126for file in $list ; do
127 if [ -r $file ] || [ -d $file ] ; then
128 keep_these_too="${keep_these_too} $file"
129 fi
130done
131
694ea471 132list="`(for i in ${lose_these_too}; do echo $i ; done) | sort -u` "
e03b0bca
KR
133lose_these_too=
134
135for file in $list ; do
136 if [ -r $file ] || [ -d $file ] ; then
137 lose_these_too="${lose_these_too} $file"
138 fi
139done
140
a93b3c77 141# All files listed between the "Things-to-keep:" line and the
43e36dd2 142# "Do-last:" line will be kept. All other files will be removed.
a93b3c77
RP
143# Directories listed in this section will have their own Sanitize
144# called. Directories not listed will be removed in their entirety
145# with rm -rf.
146
147Things-to-keep:
148
6e37b215 149COPYING
57d32184 150ChangeLog
a93b3c77 151Makefile.in
965a9f14 152README
5cc24596 153config.guess
db2de419 154config.sub
a93b3c77
RP
155configure
156configure.in
a93b3c77 157
87756e15
RP
158Things-to-lose:
159
43e36dd2
RP
160# The lines between the "Do-last:" line and the end of the file
161# are executed as a /bin/sh shell script after everything else is
162# done.
163
a93b3c77
RP
164Do-last:
165
bf150019
DE
166# Don't try to clean directories here, as the 'mv' command will fail.
167# Also, grep fails on NFS mounted directories.
168
7b85349f
RP
169if ( echo $* | egrep verbose > /dev/null ) ; then
170 verbose=true
171else
172 verbose=
173fi
174
eecef7ef
FF
175# Remove "sanitize-Sanitize" lines.
176if [ -n "${verbose}" ] ; then
177 echo Cleaning unconditional sanitizations out of Makefile.in...
178fi
179cp Makefile.in new
180sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new
181if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
182 mv Makefile.in .Recover
183fi
184mv new Makefile.in
185
7b85349f
RP
186if [ -n "${verbose}" ] ; then
187 echo Thawing away the \"chill\"...
188fi
5d4ec851 189
5d4ec851
FF
190if ( echo $* | grep keep\-chill > /dev/null ) ; then
191 for i in * ; do
192 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
7b85349f
RP
193 if [ -n "${verbose}" ] ; then
194 echo Keeping chill stuff in $i
195 fi
5d4ec851
FF
196 fi
197 done
198else
199 for i in * ; do
200 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
7b85349f
RP
201 if [ -n "${verbose}" ] ; then
202 echo Thawing the \"chill\" out of $i...
203 fi
5d4ec851
FF
204 cp $i new
205 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
bf150019
DE
206 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
207 if [ -n "${verbose}" ] ; then
208 echo Caching $i in .Recover...
209 fi
210 mv $i .Recover
186dfd16
MM
211 fi
212 mv new $i
213 fi
214 done
215fi
216
c2304cba
MH
217if [ -n "${verbose}" ] ; then
218 echo Processing \"d30v\"...
219fi
220
221d30v_files="ChangeLog config.sub configure.in"
222
223if ( echo $* | grep keep\-d30v > /dev/null ) ; then
224 for i in $d30v_files ; do
225 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
226 if [ -n "${verbose}" ] ; then
227 echo Keeping d30v stuff in $i
228 fi
229 fi
230 done
231else
232 for i in * ; do
233 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
234 if [ -n "${verbose}" ] ; then
235 echo Removing traces of \"d30v\" from $i...
236 fi
237 cp $i new
238 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
239 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
240 if [ -n "${verbose}" ] ; then
241 echo Caching $i in .Recover...
242 fi
243 mv $i .Recover
244 fi
245 mv new $i
246 fi
247 done
248fi
249
88632436 250if [ -n "${verbose}" ] ; then
ff86eeb5 251 echo Processing \"v850\"...
88632436
DE
252fi
253
3f5d1c2c
C
254v850_files="ChangeLog config.sub configure.in"
255
256if ( echo $* | grep keep\-v850 > /dev/null ) ; then
257 for i in $v850_files ; do
258 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
259 if [ -n "${verbose}" ] ; then
260 echo Keeping v850 stuff in $i
261 fi
262 fi
263 done
264else
265 for i in * ; do
266 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
267 if [ -n "${verbose}" ] ; then
268 echo Removing traces of \"v850\" from $i...
269 fi
270 cp $i new
271 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
272 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
273 if [ -n "${verbose}" ] ; then
274 echo Caching $i in .Recover...
275 fi
276 mv $i .Recover
277 fi
278 mv new $i
279 fi
276c2d7d
GRK
280 done
281fi
492c2670
NC
282if ( echo $* | grep keep\-v850e > /dev/null ) ; then
283 for i in $v850_files ; do
284 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
285 if [ -n "${verbose}" ] ; then
286 echo Keeping v850e stuff in $i
287 fi
288 fi
289 done
290else
291 for i in * ; do
292 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
293 if [ -n "${verbose}" ] ; then
294 echo Removing traces of \"v850e\" from $i...
295 fi
296 cp $i new
297 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
298 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
299 if [ -n "${verbose}" ] ; then
300 echo Caching $i in .Recover...
301 fi
302 mv $i .Recover
303 fi
304 mv new $i
305 fi
306 done
307fi
308if ( echo $* | grep keep\-v850eq > /dev/null ) ; then
309 for i in $v850_files ; do
310 if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
311 if [ -n "${verbose}" ] ; then
312 echo Keeping v850eq stuff in $i
313 fi
314 fi
315 done
316else
317 for i in * ; do
318 if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
319 if [ -n "${verbose}" ] ; then
320 echo Removing traces of \"v850eq\" from $i...
321 fi
322 cp $i new
6c872cd2 323 sed '/start\-sanitize\-v850eq/,/end-\sanitize\-v850eq/d' < $i > new
492c2670
NC
324 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
325 if [ -n "${verbose}" ] ; then
326 echo Caching $i in .Recover...
327 fi
328 mv $i .Recover
329 fi
330 mv new $i
331 fi
332 done
333fi
276c2d7d
GRK
334
335r5900_files="ChangeLog config.sub configure.in"
336
337if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
338 for i in $r5900_files ; do
339 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
340 if [ -n "${verbose}" ] ; then
341 echo Keeping r5900 stuff in $i
342 fi
343 fi
344 done
345else
346 for i in * ; do
347 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
348 if [ -n "${verbose}" ] ; then
349 echo Removing traces of \"r5900\" from $i...
350 fi
351 cp $i new
352 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/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
3f5d1c2c
C
361 done
362fi
363
962873d5
FF
364tic80_files="ChangeLog config.sub configure.in"
365
366if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
367 for i in $tic80_files ; do
368 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
369 if [ -n "${verbose}" ] ; then
370 echo Keeping tic80 stuff in $i
371 fi
372 fi
373 done
374else
375 for i in * ; do
376 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
377 if [ -n "${verbose}" ] ; then
378 echo Removing traces of \"tic80\" from $i...
379 fi
380 cp $i new
381 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
382 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
383 if [ -n "${verbose}" ] ; then
384 echo Caching $i in .Recover...
385 fi
386 mv $i .Recover
387 fi
388 mv new $i
389 fi
390 done
391fi
392
2f9bfdfa
SG
393if ( echo $* | grep keep\-gm > /dev/null ) ; then
394 for i in * ; do
395 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
396 if [ -n "${verbose}" ] ; then
397 echo Keeping gm stuff in $i
398 fi
399 fi
400 done
401else
402 for i in * ; do
403 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
404 if [ -n "${verbose}" ] ; then
405 echo Removing traces of \"gm\" from $i...
406 fi
407 cp $i new
408 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/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
418fi
419
eebe454c
TT
420if ( echo $* | grep keep\-ide > /dev/null ) ; then
421 for i in * ; do
422 if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
423 if [ -n "${verbose}" ] ; then
424 echo Keeping ide stuff in $i
425 fi
426 fi
427 done
428else
429 for i in * ; do
430 if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
431 if [ -n "${verbose}" ] ; then
432 echo Removing traces of \"ide\" from $i...
433 fi
434 cp $i new
435 sed '/start\-sanitize\-ide/,/end-\sanitize\-ide/d' < $i > new
436 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
437 if [ -n "${verbose}" ] ; then
438 echo Caching $i in .Recover...
439 fi
440 mv $i .Recover
441 fi
442 mv new $i
443 fi
444 done
445fi
446
6c872cd2
FL
447if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
448 echo Catering to RMS by removing traces of \"gdbtk\"...
449 if [ -n "${verbose}" ] ; then
450 echo Removing traces of \"gdbtk\" from Makefile.in...
451 fi
452 cp Makefile.in new
453 sed -e '/GDBTK_SUPPORT_DIRS=/d' -e 's/ $(GDBTK_SUPPORT_DIRS)//' < Makefile.in > new
454 if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
455 if [ -n "${verbose}" ] ; then
456 echo Caching Makefile.in in .Recover...
457 fi
458 mv Makefile.in .Recover
459 fi
460 mv new Makefile.in
461fi
462
3b0fb9c9
KR
463# Do this check LAST!
464for i in * ; do
465 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
466 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
467 exit 1
468 fi
469done
470
57d32184 471# eof
This page took 0.219315 seconds and 4 git commands to generate.