1 # .Sanitize for devo/bfd
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.
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
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.
18 tic80_files="cpu-tic80.c coff-tic80.c"
20 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
21 keep_these_too="${tic80_files} ${keep_these_too}"
23 lose_these_too="${tic80_files} ${lose_these_too}"
26 # All files listed between the "Things-to-keep:" line and the
27 # "Do-last:" line will be kept. All other files will be removed.
28 # Directories listed in this section will have their own Sanitize
29 # called. Directories not listed will be removed in their entirety
291 # The lines between the "Do-last:" line and the end of the file
292 # are executed as a /bin/sh shell script after everything else is
297 am33_files="ChangeLog archures.c bfd-in2.h cpu-m10300.c elf-m10300.c"
298 if ( echo $* | grep keep\-am33 > /dev/null ) ; then
299 for i in $am33_files ; do
300 if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
301 if [ -n "${verbose}" ] ; then
302 echo Keeping am33 stuff in $i
307 for i in $am33_files ; do
308 if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
309 if [ -n "${verbose}" ] ; then
310 echo Removing traces of \"am33\" from $i...
313 sed '/start\-sanitize\-am33/,/end-\sanitize\-am33/d' < $i > new
314 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
315 if [ -n "${verbose}" ] ; then
316 echo Caching $i in .Recover...
325 v850_files="ChangeLog ChangeLog-9697 Makefile.in Makefile.am archures.c reloc.c targets.c config.bfd configure.in configure bfd-in2.h elf.c libbfd.h elf32-v850.c cpu-v850.c"
326 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
327 for i in $v850_files ; do
328 if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
329 if [ -n "${verbose}" ] ; then
330 echo Keeping v850e stuff in $i
335 for i in $v850_files ; do
336 if test -f $i && (grep sanitize-v850e $i > /dev/null) ; then
337 if [ -n "${verbose}" ] ; then
338 echo Removing traces of \"v850e\" from $i...
341 sed '/start\-sanitize\-v850e/,/end\-sanitize\-v850e/d' < $i > new
342 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
343 if [ -n "${verbose}" ] ; then
344 echo Caching $i in .Recover...
353 r5900_files="ChangeLog ChangeLog-9697 config.bfd archures.c bfd-in2.h cpu-mips.c elf32-mips.c libbfd.h reloc.c"
354 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
355 for i in $r5900_files ; do
356 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
357 if [ -n "${verbose}" ] ; then
358 echo Keeping r5900 stuff in $i
363 for i in $r5900_files ; do
364 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
365 if [ -n "${verbose}" ] ; then
366 echo Removing traces of \"r5900\" from $i...
369 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
370 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
371 if [ -n "${verbose}" ] ; then
372 echo Caching $i in .Recover...
381 tx19_files="archures.c bfd-in2.h cpu-mips.c"
382 if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
383 for i in $tx19_files ; do
384 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
385 if [ -n "${verbose}" ] ; then
386 echo Keeping tx19 stuff in $i
391 for i in $tx19_files ; do
392 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
393 if [ -n "${verbose}" ] ; then
394 echo Removing traces of \"tx19\" from $i...
397 sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new
398 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
399 if [ -n "${verbose}" ] ; then
400 echo Caching $i in .Recover...
409 tx49_files="archures.c bfd-in2.h cpu-mips.c elf32-mips.c"
410 if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
411 for i in $tx49_files ; do
412 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
413 if [ -n "${verbose}" ] ; then
414 echo Keeping tx49 stuff in $i
419 for i in $tx49_files ; do
420 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
421 if [ -n "${verbose}" ] ; then
422 echo Removing traces of \"tx49\" from $i...
425 sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
426 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
427 if [ -n "${verbose}" ] ; then
428 echo Caching $i in .Recover...
437 tic80_files="ChangeLog ChangeLog-9697 Makefile.in Makefile.am archures.c bfd-in2.h config.bfd configure configure.in targets.c coffcode.h coffswap.h"
438 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
439 for i in $tic80_files ; do
440 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
441 if [ -n "${verbose}" ] ; then
442 echo Keeping tic80 stuff in $i
447 for i in $tic80_files ; do
448 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
449 if [ -n "${verbose}" ] ; then
450 echo Removing traces of \"tic80\" from $i...
453 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
454 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
455 if [ -n "${verbose}" ] ; then
456 echo Caching $i in .Recover...
465 vr5400_files="ChangeLog ChangeLog-9697 archures.c bfd-in2.h bfd-in.h cpu-mips.c elf32-mips.c"
466 if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
467 for i in $vr5400_files ; do
468 if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
469 if [ -n "${verbose}" ] ; then
470 echo Keeping vr5400 stuff in $i
475 for i in $vr5400_files ; do
476 if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
477 if [ -n "${verbose}" ] ; then
478 echo Removing traces of \"vr5400\" from $i...
481 sed '/start\-sanitize\-vr5400/,/end-\sanitize\-vr5400/d' < $i > new
482 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
483 if [ -n "${verbose}" ] ; then
484 echo Caching $i in .Recover...
493 vr4320_files="ChangeLog archures.c bfd-in2.h cpu-mips.c elf32-mips.c"
494 if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
495 for i in $vr4320_files ; do
496 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
497 if [ -n "${verbose}" ] ; then
498 echo Keeping vr4320 stuff in $i
503 for i in $vr4320_files ; do
504 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
505 if [ -n "${verbose}" ] ; then
506 echo Removing traces of \"vr4320\" from $i...
509 sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/d' < $i > new
510 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
511 if [ -n "${verbose}" ] ; then
512 echo Caching $i in .Recover...
521 m32rx_files="ChangeLog ChangeLog-9697 archures.c bfd-in2.h elf32-m32r.c cpu-m32r.c"
522 if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
523 for i in $m32rx_files ; do
524 if test -r $i && (grep sanitize-m32rx $i > /dev/null) ; then
525 if [ -n "${verbose}" ] ; then
526 echo Keeping m32rx stuff in $i
531 for i in $m32rx_files ; do
532 if test -f $i && (grep sanitize-m32rx $i > /dev/null) ; then
533 if [ -n "${verbose}" ] ; then
534 echo Removing traces of \"m32rx\" from $i...
537 sed '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' < $i > new
538 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
539 if [ -n "${verbose}" ] ; then
540 echo Caching $i in .Recover...
549 sky_files="ChangeLog archures.c elf32-mips.c reloc.c cpu-mips.c config.bfd configure.in configure bfd-in2.h libbfd.h"
550 if ( echo $* | grep keep\-sky > /dev/null ) ; then
551 for i in $sky_files ; do
552 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
553 if [ -n "${verbose}" ] ; then
554 echo Keeping sky stuff in $i
559 for i in $sky_files ; do
560 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
561 if [ -n "${verbose}" ] ; then
562 echo Removing traces of \"sky\" from $i...
565 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
566 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
567 if [ -n "${verbose}" ] ; then
568 echo Caching $i in .Recover...
577 beos_files="ChangeLog config.bfd"
578 if ( echo $* | grep keep\-beos > /dev/null ) ; then
579 for i in $beos_files ; do
580 if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
581 if [ -n "${verbose}" ] ; then
582 echo Keeping beos stuff in $i
587 for i in $beos_files ; do
588 if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
589 if [ -n "${verbose}" ] ; then
590 echo Removing traces of \"beos\" from $i...
593 sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/d' < $i > new
594 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
595 if [ -n "${verbose}" ] ; then
596 echo Caching $i in .Recover...
605 armelf_files="ChangeLog Makefile.am Makefile.in config.bfd configure configure.in elf.c targets.c"
606 if ( echo $* | grep keep\-armelf > /dev/null ) ; then
607 for i in $armelf_files ; do
608 if test ! -d $i && (grep sanitize-armelf $i > /dev/null) ; then
609 if [ -n "${verbose}" ] ; then
610 echo Keeping armelf stuff in $i
615 for i in $armelf_files ; do
616 if test ! -d $i && (grep sanitize-armelf $i > /dev/null) ; then
617 if [ -n "${verbose}" ] ; then
618 echo Removing traces of \"armelf\" from $i...
621 sed '/start\-sanitize\-armelf/,/end-\sanitize\-armelf/d' < $i > new
622 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
623 if [ -n "${verbose}" ] ; then
624 echo Caching $i in .Recover...
634 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
635 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
640 # This must come after all other sanitizations. Re-sanitize the .pot
642 if [ -n "${verbose}" ]; then
643 echo Re-computing files for gettext ...
646 if [ -n "${safe}" -a ! -f po/.Recover/POTFILES.in ]; then
647 if [ -n "${verbose}" ]; then
648 echo Caching po/POTFILES.in in .Recover...
650 mv po/POTFILES.in po/.Recover
652 find . -name '*.[ch]' | sed -e 's,^\./,,' > po/POTFILES.in
654 if [ -n "${safe}" -a ! -f po/.Recover/bfd.pot ]; then
655 if [ -n "${verbose}" ]; then
656 echo Caching po/bfd.pot in .Recover...
658 mv po/bfd.pot po/.Recover
660 # If this fails, Sanitization must fail.
661 xgettext -c -k_ -kN_ -f po/POTFILES.in -o po/bfd.pot || exit 1